This is the mail archive of the glibc-cvs@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]

GNU C Library master sources branch master updated. glibc-2.19-743-g256aa66


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  256aa665963ebbc2893ed4519dde33e25d8f51c9 (commit)
      from  b100f9aa77027e4371154820ea8a0353bfd13223 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=256aa665963ebbc2893ed4519dde33e25d8f51c9

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;

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog               |    4 ++++
 sysdeps/posix/sysconf.c |    2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]