diff options
author | Roland McGrath <roland@hack.frob.com> | 2013-03-28 10:38:37 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2013-03-28 10:38:37 -0700 |
commit | 356b3480232d1a8f689c6c275e45c2a4c68efb30 (patch) | |
tree | 98feb76e5ef7b80510dd434c4a32af6f882bfec9 /sysdeps/posix | |
parent | b0f1246ab45b6d27e2bba64aa8dfe407ac740537 (diff) | |
download | glibc-356b3480232d1a8f689c6c275e45c2a4c68efb30.tar.gz glibc-356b3480232d1a8f689c6c275e45c2a4c68efb30.tar.xz glibc-356b3480232d1a8f689c6c275e45c2a4c68efb30.zip |
Never call syslog in __libc_message.
Diffstat (limited to 'sysdeps/posix')
-rw-r--r-- | sysdeps/posix/libc_fatal.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sysdeps/posix/libc_fatal.c b/sysdeps/posix/libc_fatal.c index afa1b816c3..5071df15b4 100644 --- a/sysdeps/posix/libc_fatal.c +++ b/sysdeps/posix/libc_fatal.c @@ -29,7 +29,6 @@ #include <sysdep.h> #include <unistd.h> #include <sys/mman.h> -#include <sys/syslog.h> #include <sys/uio.h> #include <not-cancel.h> @@ -68,11 +67,9 @@ void __libc_message (int do_abort, const char *fmt, ...) { va_list ap; - va_list ap_copy; int fd = -1; va_start (ap, fmt); - va_copy (ap_copy, ap); #ifdef FATAL_PREPARE FATAL_PREPARE; @@ -170,12 +167,6 @@ __libc_message (int do_abort, const char *fmt, ...) va_end (ap); - /* If we had no success writing the message, use syslog. */ - if (! written) - vsyslog (LOG_ERR, fmt, ap_copy); - - va_end (ap_copy); - if (do_abort) { BEFORE_ABORT (do_abort, written, fd); |