This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
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
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;
Attachment:
pgpvnYTDc3Td5.pgp
Description: PGP signature
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |