From: Ulrich Drepper Date: Fri, 2 Apr 1999 10:28:18 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_1_1~190 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b6d04893506c23e5a36deefffc67328c7382149a;p=thirdparty%2Fglibc.git Update. 1999-04-02 Ulrich Drepper * misc/syslog.c (closelog_internal): Do not reset LogTag here. (closelog): But instead here. Patch by Alan Curry [PR libc/1061]. --- diff --git a/ChangeLog b/ChangeLog index de61cae094a..a2ff5a5e4aa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1999-04-02 Ulrich Drepper + + * misc/syslog.c (closelog_internal): Do not reset LogTag here. + (closelog): But instead here. + Patch by Alan Curry [PR libc/1061]. + 1999-04-02 Andreas Jaeger * elf/Makefile (CFLAGS-multiload.c): Change to allow building in diff --git a/misc/syslog.c b/misc/syslog.c index daa8b77efa7..bba9492bdc7 100644 --- a/misc/syslog.c +++ b/misc/syslog.c @@ -313,7 +313,6 @@ closelog_internal() __close (LogFile); LogFile = -1; connected = 0; - LogTag = NULL; } void @@ -325,6 +324,7 @@ closelog () __libc_lock_lock (syslog_lock); closelog_internal (); + LogTag = NULL; /* Free the lock. */ __libc_cleanup_region_end (1);