From: Timo Sirainen Date: Wed, 27 Jan 2010 22:35:11 +0000 (+0200) Subject: doveconf: Don't add extra space to "block {" for unique blocks. X-Git-Tag: 2.0.beta2~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2496e574d536a8e410bb8e1f10ffb905ad4acda;p=thirdparty%2Fdovecot%2Fcore.git doveconf: Don't add extra space to "block {" for unique blocks. --HG-- branch : HEAD --- 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++;