aboutsummaryrefslogtreecommitdiffstats
path: root/src/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/log.c')
-rw-r--r--src/log.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/log.c b/src/log.c
index b555f9b..92d1b77 100644
--- a/src/log.c
+++ b/src/log.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.14 2008/03/11 17:56:04 james
+ * *** empty log message ***
+ *
* Revision 1.13 2008/03/11 16:56:29 james
* *** empty log message ***
*
@@ -118,11 +121,11 @@ flog_sighup (Log * _l)
if (!l->fp)
return;
- log_f(_l,"<sighup received>");
+ log_f (_l, "<sighup received - closing log file>");
fclose (l->fp);
l->fp = fopen (l->filename, "a+");
- log_f(_l,"<sighup received>");
+ log_f (_l, "<sighup received - opening log file>");
}