mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
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.
This commit is contained in:
parent
063dfd9ff3
commit
6ed656d691
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue