From: Willy Tarreau Date: Fri, 3 Apr 2026 14:24:43 +0000 (+0200) Subject: BUG/MINOR: http-act: fix a typo in the "pause" action error message X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6ed656d691bc47f75e9a8c185536b35c29b9725c;p=thirdparty%2Fhaproxy.git BUG/MINOR: http-act: fix a typo in the "pause" action error message It was saying "mause" instead of "pause" :-) This should be backported to 3.2. --- diff --git a/src/http_act.c b/src/http_act.c index 6a88e20c4..57e390b3f 100644 --- a/src/http_act.c +++ b/src/http_act.c @@ -2128,7 +2128,7 @@ static enum act_parse_ret parse_http_pause(const char **args, int *orig_arg, str rule->arg.timeout.expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args, NULL); if (!rule->arg.timeout.expr) { - memprintf(err, "unexpected character '%c' in rule 'mause'", *res); + memprintf(err, "unexpected character '%c' in rule 'pause'", *res); return ACT_RET_PRS_ERR; } }