From f2496e574d536a8e410bb8e1f10ffb905ad4acda Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 28 Jan 2010 00:35:11 +0200 Subject: [PATCH] doveconf: Don't add extra space to "block {" for unique blocks. --HG-- branch : HEAD --- src/config/doveconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/doveconf.c b/src/config/doveconf.c index 4247d92c3e..b488dd3c88 100644 --- a/src/config/doveconf.c +++ b/src/config/doveconf.c @@ -203,7 +203,7 @@ static int config_connection_request_human(struct ostream *output, str_append_n(list_prefix, key2, p - key2); else str_append(list_prefix, key2); - if (unique_key) + if (unique_key && *value != '\0') str_printfa(list_prefix, " %s", value); str_append(list_prefix, " {\n"); indent++; -- 2.47.3