From: Michael Tremer Date: Tue, 11 Oct 2022 16:09:07 +0000 (+0000) Subject: config: Continue after parsing a multiline value X-Git-Tag: 0.9.28~252 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ac4caa5c5a77a70aae69b462bc4f0291d65f9820;p=pakfire.git config: Continue after parsing a multiline value Signed-off-by: Michael Tremer --- diff --git a/src/libpakfire/config.c b/src/libpakfire/config.c index d622f7ffb..61d408ff5 100644 --- a/src/libpakfire/config.c +++ b/src/libpakfire/config.c @@ -453,6 +453,9 @@ int pakfire_config_read(struct pakfire_config* config, FILE* f) { r = pakfire_config_append(config, section, key, line); if (r) goto ERROR; + + // Skip to the next line + continue; } // Handle any assignments