[COMMITTED] Fix typo in sysconf.c

Message ID 20140702094313.GG20796@spoyarek.pnq.redhat.com
State Committed
Headers

Commit Message

Siddhesh Poyarekar July 2, 2014, 9:43 a.m. UTC
  Hi,

I've fixed the following typo as obvious.

Siddhesh

commit 256aa665963ebbc2893ed4519dde33e25d8f51c9
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
Date:   Wed Jul 2 15:09:39 2014 +0530

    Fix typo in macro name
    
    It is _POSIX_SIGNALS and not _POSUX_SIGNALS
  

Patch

diff --git a/ChangeLog b/ChangeLog
index 986210c..56c35ef 100644
--- 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.
diff --git a/sysdeps/posix/sysconf.c b/sysdeps/posix/sysconf.c
index 26136bd..e940099 100644
--- a/sysdeps/posix/sysconf.c
+++ b/sysdeps/posix/sysconf.c
@@ -998,7 +998,7 @@  __sysconf (name)
 #endif
 
     case _SC_SIGNALS:
-#ifdef _POSUX_SIGNALS
+#ifdef _POSIX_SIGNALS
       return _POSIX_SIGNALS;
 #else
       return -1;