]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix typo in macro name
authorSiddhesh Poyarekar <siddhesh@redhat.com>
Wed, 2 Jul 2014 09:39:39 +0000 (15:09 +0530)
committerSiddhesh Poyarekar <siddhesh@redhat.com>
Wed, 2 Jul 2014 09:39:39 +0000 (15:09 +0530)
It is _POSIX_SIGNALS and not _POSUX_SIGNALS

ChangeLog
sysdeps/posix/sysconf.c

index 986210c748451ef77bde21c7aaa383c38d5bf8f9..56c35eff30bdb6b30296e8455f9fcba3ed3eace0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
+
+       * sysdeps/posix/sysconf.c (__sysconf): Fix typo in macro name.
+
 2014-07-02  Will Newton  <will.newton@linaro.org>
 
        * malloc/obstack.c: Merge from gnulib master.
index 26136bd9c93e0d7a1441e77079b3608e0b74670a..e940099b06fc09edfcc8f6ea855f8b00d4218e16 100644 (file)
@@ -998,7 +998,7 @@ __sysconf (name)
 #endif
 
     case _SC_SIGNALS:
-#ifdef _POSUX_SIGNALS
+#ifdef _POSIX_SIGNALS
       return _POSIX_SIGNALS;
 #else
       return -1;