summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Pennock <pdp@exim.org>2011-10-05 19:36:34 -0400
committerPhil Pennock <pdp@exim.org>2011-10-05 19:36:34 -0400
commitd690cbdcc1eae1eb60e83caf6800f768b733dadd (patch)
treeb988d1aa8172f94ed1e885f1b789bf81a384366f
parent5cfd2e57f5842d83cd33650ae404b64e50e6ed65 (diff)
Apply patch from Dmitry Isaikin fixing log.c format string.
fixes bug 1152.
-rw-r--r--doc/doc-txt/ChangeLog5
-rw-r--r--src/src/log.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog
index b58444a55..9a518e9d2 100644
--- a/doc/doc-txt/ChangeLog
+++ b/doc/doc-txt/ChangeLog
@@ -123,6 +123,11 @@ PP/11 match_* no longer expand right-hand-side by default.
PP/12 fix uninitialised greeting string from PP/03 (smtps client support).
+PP/13 shell and compiler warnings fixes for RC1-RC3 changes.
+
+PP/14 fix log_write() format string regression from TF/03.
+ Bugzilla 1152. Patch from Dmitry Isaikin.
+
Exim version 4.76
-----------------
diff --git a/src/src/log.c b/src/src/log.c
index fbab77caf..a3ec18d9f 100644
--- a/src/src/log.c
+++ b/src/src/log.c
@@ -713,7 +713,7 @@ DEBUG(D_any|D_v)
}
}
- sprintf(CS ptr, "%s%s%s%s%s\n ",
+ sprintf(CS ptr, "%s%s%s%s\n ",
((flags & LOG_MAIN) != 0)? " MAIN" : "",
((flags & LOG_PANIC) != 0)? " PANIC" : "",
((flags & LOG_PANIC_DIE) == LOG_PANIC_DIE)? " DIE" : "",