From: Dominik Froehlich Date: Fri, 17 Apr 2020 09:04:35 +0000 (+0200) Subject: CLEANUP: http: Fixed small typo in parse_http_return X-Git-Tag: v2.2-dev6~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30d49ab61a6838d65cbdc64139ead22f8fbac535;p=thirdparty%2Fhaproxy.git CLEANUP: http: Fixed small typo in parse_http_return It's only two typos in a warning (ober vs over, and rewritting vs rewriting). --- diff --git a/src/http_act.c b/src/http_act.c index 3077b68f55..e9f58002ae 100644 --- a/src/http_act.c +++ b/src/http_act.c @@ -2387,8 +2387,8 @@ static enum act_parse_ret parse_http_return(const char **args, int *orig_arg, st ctype = NULL; } if (global.tune.bufsize - objlen < global.tune.maxrewrite) { - ha_warning("parsing [%s:%d] : 'http-%s return' : the payload runs ober the buffer space reserved to headers rewritting." - " It may lead to internal errors if strict rewritting mode is enabled.\n", + ha_warning("parsing [%s:%d] : 'http-%s return' : the payload runs over the buffer space reserved to headers rewriting." + " It may lead to internal errors if strict rewriting mode is enabled.\n", px->conf.args.file, px->conf.args.line, (rule->from == ACT_F_HTTP_REQ ? "request" : "response")); }