From: Christopher Faulet Date: Mon, 4 Apr 2016 08:51:17 +0000 (+0200) Subject: MINOR: filters: Typo in an error message X-Git-Tag: v1.7-dev3~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc7317d11e68e4335d831dddc2c6cda0ac425d5d;p=thirdparty%2Fhaproxy.git MINOR: filters: Typo in an error message --- diff --git a/src/filters.c b/src/filters.c index a8efaa1817..c277c12b86 100644 --- a/src/filters.c +++ b/src/filters.c @@ -177,7 +177,7 @@ parse_filter(char **args, int section_type, struct proxy *curpx, /* Filter cannot be defined on a default proxy */ if (curpx == defpx) { - memprintf(err, "parsing [%s:%d] : %s is only allowed in a 'default' section.", + memprintf(err, "parsing [%s:%d] : %s is not allowed in a 'default' section.", file, line, args[0]); return -1; }