From 867e81bc638e3eba037bc944c9ef8d3a16ce0ec0 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Mon, 10 Mar 2025 18:47:51 +0200 Subject: [PATCH] doveconf: Fix boollist output when using -h parameter Forgotten in 61e3708fb56a10e3020d6a4f155ad32167833488 --- src/config/doveconf.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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)) -- 2.47.3