From: Christopher Faulet Date: Thu, 26 Apr 2018 09:36:34 +0000 (+0200) Subject: BUG/MINOR: spoe: Fix parsing of dontlog-normal option X-Git-Tag: v1.9-dev1~288 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=799f51801a948e3728a1df28d7eafe51df6b0565;p=thirdparty%2Fhaproxy.git BUG/MINOR: spoe: Fix parsing of dontlog-normal option A missing goto led to a parsing error when line "option dontlog-normal" was parsed. --- diff --git a/src/flt_spoe.c b/src/flt_spoe.c index 40cdd6916d..6ac48fc7d2 100644 --- a/src/flt_spoe.c +++ b/src/flt_spoe.c @@ -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 */