From: Joseph Herlant Date: Thu, 15 Nov 2018 19:50:44 +0000 (-0800) Subject: MINOR: Fix typos in error messages in the proxy subsystem X-Git-Tag: v1.9-dev7~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9edebb8568344d1f1fb0502aee670943256a56d6;p=thirdparty%2Fhaproxy.git MINOR: Fix typos in error messages in the proxy subsystem Fix typos in error messages that will be user-visible in the proxy subsystem. --- diff --git a/src/proxy.c b/src/proxy.c index c21ff9d129..6102f981a9 100644 --- a/src/proxy.c +++ b/src/proxy.c @@ -358,13 +358,13 @@ static int proxy_parse_declare(char **args, int section, struct proxy *curpx, { /* Capture keyword wannot be declared in a default proxy. */ if (curpx == defpx) { - memprintf(err, "'%s' not avalaible in default section", args[0]); + memprintf(err, "'%s' not available in default section", args[0]); return -1; } /* Capture keywork is only available in frontend. */ if (!(curpx->cap & PR_CAP_FE)) { - memprintf(err, "'%s' only avalaible in frontend or listen section", args[0]); + memprintf(err, "'%s' only available in frontend or listen section", args[0]); return -1; }