Made log_init() call timestring() instead of just localtime() prior to a
authorWayne Davison <wayned@samba.org>
Wed, 3 May 2006 06:11:11 +0000 (06:11 +0000)
committerWayne Davison <wayned@samba.org>
Wed, 3 May 2006 06:11:11 +0000 (06:11 +0000)
chroot (note that timestring() makes use of localtime() plus strftime()).

log.c

diff --git a/log.c b/log.c
index 493ee1a..3f57a44 100644 (file)
--- a/log.c
+++ b/log.c
@@ -154,17 +154,14 @@ static void logfile_open(void)
 
 void log_init(void)
 {
 
 void log_init(void)
 {
-       time_t t;
-
        if (log_initialised)
                return;
        log_initialised = 1;
 
        if (log_initialised)
                return;
        log_initialised = 1;
 
-       /* this looks pointless, but it is needed in order for the
+       /* This looks pointless, but it is needed in order for the
         * C library on some systems to fetch the timezone info
         * C library on some systems to fetch the timezone info
-        * before the chroot */
-       t = time(NULL);
-       localtime(&t);
+        * before the chroot. */
+       timestring(time(NULL));
 
        /* optionally use a log file instead of syslog */
        logfname = lp_log_file();
 
        /* optionally use a log file instead of syslog */
        logfname = lp_log_file();