summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2009-09-07 00:18:06 -0700
committerUlrich Drepper <drepper@redhat.com>2009-09-07 00:18:06 -0700
commitd76da20f7f77e9dfc7e81ebaf0f9902699a873e8 (patch)
tree5857aa2983d2463b8c0cfad7b1fbd476e0cbe51f
parent4c14c8c348ee3e9a5fea3608cabcabdb275b6141 (diff)
downloadglibc-d76da20f7f77e9dfc7e81ebaf0f9902699a873e8.tar.gz
glibc-d76da20f7f77e9dfc7e81ebaf0f9902699a873e8.tar.xz
glibc-d76da20f7f77e9dfc7e81ebaf0f9902699a873e8.zip
Handle POSIX2_LINE_MAX in getconf.
-rw-r--r--ChangeLog5
-rw-r--r--posix/getconf.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8cb983db4e..a0ed5d50e8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-09-07  Ulrich Drepper  <drepper@redhat.com>
+
+	* posix/getconf.c (vars): Handle POSIX2_LINE_MAX in addition to
+	_POSIX2_LINE_MAX.
+
 2009-09-04  H.J. Lu  <hongjiu.lu@intel.com>
 
 	* configure.in: Support binutils 2.20.
diff --git a/posix/getconf.c b/posix/getconf.c
index c9e1300e49..facf5b08f5 100644
--- a/posix/getconf.c
+++ b/posix/getconf.c
@@ -484,6 +484,7 @@ static const struct conf vars[] =
 #endif
 #ifdef _SC_LINE_MAX
     { "_POSIX2_LINE_MAX", _SC_LINE_MAX, SYSCONF },
+    { "POSIX2_LINE_MAX", _SC_LINE_MAX, SYSCONF },
 #endif
 #ifdef _SC_2_LOCALEDEF
     { "POSIX2_LOCALEDEF", _SC_2_LOCALEDEF, SYSCONF },