X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/e7c67065c060d500eba8d073da9568db2c658aad..cb15269eb0cb5580169e63fada0c71f168879f4f:/log.c diff --git a/log.c b/log.c index 493ee1a9..7fd37e42 100644 --- a/log.c +++ b/log.c @@ -154,17 +154,14 @@ static void logfile_open(void) void log_init(void) { - time_t t; - 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 - * 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(); @@ -259,7 +256,7 @@ void rwrite(enum logcode code, char *buf, int len) if (am_server) { /* Pass the message to the non-server side. */ - if (io_multiplex_write((enum msgcode)code, buf, len)) + if (send_msg((enum msgcode)code, buf, len)) return; if (am_daemon) { /* TODO: can we send the error to the user somehow? */