]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: http: Fixed small typo in parse_http_return
authorDominik Froehlich <dominik.frolic@gmail.com>
Fri, 17 Apr 2020 09:04:35 +0000 (11:04 +0200)
committerWilly Tarreau <w@1wt.eu>
Fri, 17 Apr 2020 11:50:11 +0000 (13:50 +0200)
It's only two typos in a warning (ober vs over, and rewritting vs rewriting).

src/http_act.c

index 3077b68f558724fbd72f0cbb597b59e83861510b..e9f58002aeda116bde25d633af71c3f29e38b8fd 100644 (file)
@@ -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"));
                }