Fix eximon continuous updating with timestamped log-files.
[exim.git] / src / exim_monitor / em_log.c
index bd1d462bf9a071738c9bc6053995c97b64c49667..0441edd2eb84f0a7d61d158d46658fc7cc77149f 100644 (file)
@@ -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)