From: Timo Sirainen Date: Mon, 10 Mar 2025 16:47:51 +0000 (+0200) Subject: doveconf: Fix boollist output when using -h parameter X-Git-Tag: 2.4.1~52 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=867e81bc638e3eba037bc944c9ef8d3a16ce0ec0;p=thirdparty%2Fdovecot%2Fcore.git doveconf: Fix boollist output when using -h parameter Forgotten in 61e3708fb56a10e3020d6a4f155ad32167833488 --- diff --git a/src/config/doveconf.c b/src/config/doveconf.c index 212c8f0140..17dafbf006 100644 --- a/src/config/doveconf.c +++ b/src/config/doveconf.c @@ -630,9 +630,7 @@ config_dump_human_output(struct config_dump_human_context *ctx, if (hide_key && value[0] == '=' && value[1] == '\0') { /* There is no value that would need printing here, continue with the next. */ - goto end; - } - if (hide_value) + } else if (hide_value) ; /* boollist value was already written */ else if (hide_passwords && hide_secrets_from_value(output, full_key, value+1))