From a2278c8bbbee63ee75c8e3e97efd6828c2083d89 Mon Sep 17 00:00:00 2001 From: Jim Freeman Date: Sat, 15 Apr 2017 08:01:59 -0600 Subject: [PATCH] CLEANUP: logs: typo: simgle => single Typo in error message. Backport to 1.7. --- src/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/log.c b/src/log.c index be1ebdca1..003e42bdf 100644 --- a/src/log.c +++ b/src/log.c @@ -575,7 +575,7 @@ int parse_logformat_string(const char *fmt, struct proxy *curproxy, struct list cformat = LF_TEXT; pformat = LF_TEXT; /* finally we include the previous char as well */ sp = str - 1; /* send both the '%' and the current char */ - memprintf(err, "unexpected variable name near '%c' at position %d line : '%s'. Maybe you want to write a simgle '%%', use the syntax '%%%%'", + memprintf(err, "unexpected variable name near '%c' at position %d line : '%s'. Maybe you want to write a single '%%', use the syntax '%%%%'", *str, (int)(str - backfmt), fmt); return 0;