From 799f51801a948e3728a1df28d7eafe51df6b0565 Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Thu, 26 Apr 2018 11:36:34 +0200 Subject: [PATCH] BUG/MINOR: spoe: Fix parsing of dontlog-normal option A missing goto led to a parsing error when line "option dontlog-normal" was parsed. --- src/flt_spoe.c | 1 + 1 file changed, 1 insertion(+) 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 */ -- 2.47.3