From: Siddhesh Poyarekar Date: Wed, 2 Jul 2014 09:39:39 +0000 (+0530) Subject: Fix typo in macro name X-Git-Tag: glibc-2.20~169 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=256aa665963ebbc2893ed4519dde33e25d8f51c9;p=thirdparty%2Fglibc.git Fix typo in macro name It is _POSIX_SIGNALS and not _POSUX_SIGNALS --- diff --git a/ChangeLog b/ChangeLog index 986210c7484..56c35eff30b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-07-02 Siddhesh Poyarekar + + * sysdeps/posix/sysconf.c (__sysconf): Fix typo in macro name. + 2014-07-02 Will Newton * malloc/obstack.c: Merge from gnulib master. diff --git a/sysdeps/posix/sysconf.c b/sysdeps/posix/sysconf.c index 26136bd9c93..e940099b06f 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;