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.20-103-gf05e73f


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  f05e73f660d5cc3a72b46047c829ccf5e096c88b (commit)
      from  6ab1d1ea969df0698ee413a247948fc035e12276 (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=f05e73f660d5cc3a72b46047c829ccf5e096c88b

commit f05e73f660d5cc3a72b46047c829ccf5e096c88b
Author: Roland McGrath <roland@hack.frob.com>
Date:   Tue Oct 21 10:18:17 2014 -0700

    Avoid local PLT reference in __nptl_main.

diff --git a/ChangeLog b/ChangeLog
index 962e730..bb59ead 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-10-21  Roland McGrath  <roland@hack.frob.com>
+
+	* nptl/version.c (__nptl_main): Call __libc_write, not __write.
+
 2014-10-20  Roland McGrath  <roland@hack.frob.com>
 
 	* io/fts.c (dirent_not_directory): New function.
diff --git a/nptl/version.c b/nptl/version.c
index b2095b4..1df7d8e 100644
--- a/nptl/version.c
+++ b/nptl/version.c
@@ -38,6 +38,6 @@ __attribute__ ((noreturn))
 void
 __nptl_main (void)
 {
-  __write (STDOUT_FILENO, (const char *) banner, sizeof banner - 1);
+  __libc_write (STDOUT_FILENO, banner, sizeof banner - 1);
   _exit (0);
 }

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

Summary of changes:
 ChangeLog      |    4 ++++
 nptl/version.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]