summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--log.c3
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 25d6c6c0e..94fe477d3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,10 @@
3 - fgsch@cvs.openbsd.org 2003/01/10 23:23:24 3 - fgsch@cvs.openbsd.org 2003/01/10 23:23:24
4 [sftp-int.c] 4 [sftp-int.c]
5 typo; from Nils Nordman <nino at nforced dot com>. 5 typo; from Nils Nordman <nino at nforced dot com>.
6 - markus@cvs.openbsd.org 2003/01/11 18:29:43
7 [log.c]
8 set fatal_cleanups to NULL in fatal_remove_all_cleanups();
9 dtucker@zip.com.au
6 10
720030113 1120030113
8 - (djm) Rework openbsd-compat/setproctitle.c a bit: move emulation type 12 - (djm) Rework openbsd-compat/setproctitle.c a bit: move emulation type
@@ -1006,4 +1010,4 @@
1006 save auth method before monitor_reset_key_state(); bugzilla bug #284; 1010 save auth method before monitor_reset_key_state(); bugzilla bug #284;
1007 ok provos@ 1011 ok provos@
1008 1012
1009$Id: ChangeLog,v 1.2567 2003/01/14 11:22:11 djm Exp $ 1013$Id: ChangeLog,v 1.2568 2003/01/14 11:22:43 djm Exp $
diff --git a/log.c b/log.c
index ead7e9028..84e4ce0ac 100644
--- a/log.c
+++ b/log.c
@@ -34,7 +34,7 @@
34 */ 34 */
35 35
36#include "includes.h" 36#include "includes.h"
37RCSID("$OpenBSD: log.c,v 1.24 2002/07/19 15:43:33 markus Exp $"); 37RCSID("$OpenBSD: log.c,v 1.25 2003/01/11 18:29:43 markus Exp $");
38 38
39#include "log.h" 39#include "log.h"
40#include "xmalloc.h" 40#include "xmalloc.h"
@@ -233,6 +233,7 @@ fatal_remove_all_cleanups(void)
233 next_cu = cu->next; 233 next_cu = cu->next;
234 xfree(cu); 234 xfree(cu);
235 } 235 }
236 fatal_cleanups = NULL;
236} 237}
237 238
238/* Cleanup and exit */ 239/* Cleanup and exit */