]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUG/MINOR: http-act: fix a typo in a "del-heeaders-bin" error message
authorChristopher Faulet <cfaulet@haproxy.com>
Thu, 23 Apr 2026 06:28:44 +0000 (08:28 +0200)
committerChristopher Faulet <cfaulet@haproxy.com>
Thu, 23 Apr 2026 08:49:10 +0000 (10:49 +0200)
"with is" was replaced by "with" and the action name was not properly
reported (a 's' was missing).

No backport nedded.

src/http_act.c

index afb8bd1d546892c56700df7930e59702e5c4c14a..b93b8419b20b3f647ab02678d92b940a46722289 100644 (file)
@@ -2050,7 +2050,7 @@ static enum act_parse_ret parse_http_del_headers_bin(const char **args, int *ori
                pat_idx = pat_find_match_name(args[cur_arg]);
                switch (pat_idx) {
                case PAT_MATCH_REG:
-                       memprintf(err, "-m reg with is unsupported with del-header-bin due to performance reasons");
+                       memprintf(err, "-m reg is unsupported with del-headers-bin due to performance reasons");
                        release_sample_expr(expr);
                        return ACT_RET_PRS_ERR;
                case PAT_MATCH_STR: