commit | b65e0335d988f80e4e93f31f7331fb74db1f07b0 | [log] [tgz] |
---|---|---|
author | Cyril Bonté <cyril.bonte@free.fr> | Fri Dec 04 03:07:08 2015 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Fri Dec 04 06:09:30 2015 +0100 |
tree | b966e2bc4b829df942c56e854b82a112df120fdd | |
parent | e22bfd61b132601b3200121111c27d615f1122bf [diff] |
BUG/MINOR: checks: typo in an email-alert error message When the email alert message couldn't be formatted, the logged error message said the contrary. This fix must be backported to 1.6.
diff --git a/src/checks.c b/src/checks.c index e77926a..bc7eaa7 100644 --- a/src/checks.c +++ b/src/checks.c
@@ -3342,7 +3342,7 @@ va_end(argp); if (len < 0) { - Alert("Email alert [%s] could format message\n", p->id); + Alert("Email alert [%s] could not format message\n", p->id); return; }