diff options
author | Roland McGrath <roland@hack.frob.com> | 2014-10-21 10:18:17 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2014-10-21 10:18:17 -0700 |
commit | f05e73f660d5cc3a72b46047c829ccf5e096c88b (patch) | |
tree | 0cc9c63bbfe049aebcac00b9f72e7918c6e8d255 | |
parent | 6ab1d1ea969df0698ee413a247948fc035e12276 (diff) | |
download | glibc-f05e73f660d5cc3a72b46047c829ccf5e096c88b.zip glibc-f05e73f660d5cc3a72b46047c829ccf5e096c88b.tar.gz glibc-f05e73f660d5cc3a72b46047c829ccf5e096c88b.tar.bz2 |
Avoid local PLT reference in __nptl_main.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | nptl/version.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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); } |