diff options
author | Phil Pennock <pdp@exim.org> | 2013-06-04 17:34:36 -0400 |
---|---|---|
committer | Phil Pennock <pdp@exim.org> | 2013-06-04 17:34:36 -0400 |
commit | 8c02018827314fde071df70e2e1e080d241ffc49 (patch) | |
tree | b266623a9f6d5e93aafd4012e278dc1794d04f76 /src | |
parent | d73757b42fbf0a1dea47211dd025215ba9a36568 (diff) |
Fix eximon continuous updating with timestamped log-files.
Report and fix from Heiko Schlichting.
Fixes 1363.
Diffstat (limited to 'src')
-rw-r--r-- | src/exim_monitor/em_log.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/exim_monitor/em_log.c b/src/exim_monitor/em_log.c index bd1d462bf..0441edd2e 100644 --- a/src/exim_monitor/em_log.c +++ b/src/exim_monitor/em_log.c @@ -364,7 +364,9 @@ link count of zero on the currently open file. */ if (log_datestamping) { uschar log_file_wanted[256]; - string_format(log_file_wanted, sizeof(log_file_wanted), "%s", CS log_file); + /* Do *not* use "%s" here, we need the %D datestamp in the log_file to + * be expanded! */ + string_format(log_file_wanted, sizeof(log_file_wanted), CS log_file); if (Ustrcmp(log_file_wanted, log_file_open) != 0) { if (LOG != NULL) |