mirror of
https://github.com/haproxy/haproxy.git
synced 2026-06-11 09:52:56 -04:00
BUG/MINOR: spoe: Fix parsing of dontlog-normal option
A missing goto led to a parsing error when line "option dontlog-normal" was parsed.
This commit is contained in:
parent
ebe1399efe
commit
799f51801a
1 changed files with 1 additions and 0 deletions
|
|
@ -3509,6 +3509,7 @@ cfg_parse_spoe_agent(const char *file, int linenum, char **args, int kwm)
|
|||
curpxopts2 &= ~PR_O2_NOLOGNORM;
|
||||
else
|
||||
curpxopts2 |= PR_O2_NOLOGNORM;
|
||||
goto out;
|
||||
}
|
||||
|
||||
/* Following options does not support negation */
|
||||
|
|
|
|||
Loading…
Reference in a new issue