From: Tim Duesterhus Date: Tue, 18 Aug 2020 20:06:51 +0000 (+0200) Subject: DOC: cache: Use '' instead of '' in error message X-Git-Tag: v2.1.9~38 X-Git-Url: http://git.haproxy.org/?a=commitdiff_plain;h=672c21973b7bf17292e1d491355ac3f6b41a5ae4;p=haproxy-2.1.git DOC: cache: Use '' instead of '' in error message When the cache name is left out in 'filter cache' the error message refers to a missing ''. The name of the cache is called 'name' within the docs. Adjust the error message for consistency. The error message was introduced in 99a17a2d91f9044ea20bba6617048488aed80555. This commit first appeared in 1.9, thus the patch must be backported to 1.9+. (cherry picked from commit ea969f6f26adfa081df0d439723813cfcd4862c4) Signed-off-by: Christopher Faulet (cherry picked from commit a2acefe080df9b2430d823129173591df2c9f4a3) Signed-off-by: Christopher Faulet --- diff --git a/src/cache.c b/src/cache.c index 56aad8f..ddfd1b0 100644 --- a/src/cache.c +++ b/src/cache.c @@ -1424,7 +1424,7 @@ parse_cache_flt(char **args, int *cur_arg, struct proxy *px, /* Get the cache filter name. point on "cache" keyword */ if (!*args[pos + 1]) { - memprintf(err, "%s : expects an argument", args[pos]); + memprintf(err, "%s : expects a argument", args[pos]); goto error; } name = strdup(args[pos + 1]);