]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Actually undefine ARG_MAX from <linux/limits.h>
authorJonathan Nieder <jrnieder@gmail.com>
Sat, 7 May 2011 17:20:33 +0000 (13:20 -0400)
committerUlrich Drepper <drepper@gmail.com>
Sat, 7 May 2011 17:20:33 +0000 (13:20 -0400)
ChangeLog
sysdeps/unix/sysv/linux/sys/param.h

index 76d790593ab3702cda4900cbbe0bce32eabe7a61..f485c3ea8d096ea6e25f1c5ffd37b424d41c38b0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-03-05  Jonathan Nieder  <jrnieder@gmail.com>
+
+       * sysdeps/unix/sysv/linux/sys/param.h: Fix an #ifndef __undef_ARG_MAX
+       where #ifdef was intended.  The intent is to prevent ARG_MAX from
+       being defined by the kernel headers.
+
 2011-05-07  Ulrich Drepper  <drepper@gmail.com>
 
        [BZ #12734]
index 19c119a2c895d74a7d5aa2f94e0e123a6b5e596c..da8f5e446520c881d21f1f1eed8b8552a4366caf 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (C) 1995-1997,2000,2001,2003,2008 Free Software Foundation, Inc.
+/* Copyright (C) 1995-1997,2000,2001,2003,2008,2011
+   Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -28,7 +29,7 @@
 #include <linux/param.h>
 
 /* The kernel headers defines ARG_MAX.  The value is wrong, though.  */
-#ifndef __undef_ARG_MAX
+#ifdef __undef_ARG_MAX
 # undef ARG_MAX
 # undef __undef_ARG_MAX
 #endif