From: Cyril Bonté Date: Fri, 4 Dec 2015 02:07:08 +0000 (+0100) Subject: BUG/MINOR: checks: typo in an email-alert error message X-Git-Tag: v1.7-dev1~25 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b65e0335d988f80e4e93f31f7331fb74db1f07b0;p=thirdparty%2Fhaproxy.git 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 e77926ac3d..bc7eaa7eb2 100644 --- a/src/checks.c +++ b/src/checks.c @@ -3342,7 +3342,7 @@ void send_email_alert(struct server *s, int level, const char *format, ...) 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; }