about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--misc/syslog.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index de61cae094..a2ff5a5e4a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1999-04-02  Ulrich Drepper  <drepper@cygnus.com>
+
+	* misc/syslog.c (closelog_internal): Do not reset LogTag here.
+	(closelog): But instead here.
+	Patch by Alan Curry <pacman@cqc.com> [PR libc/1061].
+
 1999-04-02  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
 
 	* elf/Makefile (CFLAGS-multiload.c): Change to allow building in
diff --git a/misc/syslog.c b/misc/syslog.c
index daa8b77efa..bba9492bdc 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);