From 8ceb81590f85f567c50e39a4a8b88296c8da5526 Mon Sep 17 00:00:00 2001 From: thib Date: Sun, 14 Oct 2007 14:56:54 +0000 Subject: [PATCH] added seconds to debug message for better precision and consistency with other debug messages --- conf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conf.c b/conf.c index 9f7bc1d..9873f5c 100644 --- a/conf.c +++ b/conf.c @@ -22,7 +22,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: conf.c,v 1.73 2007-06-03 17:52:34 thib Exp $ */ + /* $Id: conf.c,v 1.74 2007-10-14 14:56:54 thib Exp $ */ #include "fcron.h" @@ -296,11 +296,11 @@ synchronize_file(char *file_name) struct tm *ftime; ftime = localtime(&new_l->cl_nextexe); debug(" from last conf: %s next exec %d/%d/%d" - " wday:%d %02d:%02d (system time)", + " wday:%d %02d:%02d:%02d (system time)", new_l->cl_shell, (ftime->tm_mon + 1), ftime->tm_mday, (ftime->tm_year + 1900), ftime->tm_wday, - ftime->tm_hour, ftime->tm_min); + ftime->tm_hour, ftime->tm_min, ftime->tm_sec); } break; -- 2.40.0