From: Timo Sirainen Date: Wed, 19 May 2010 15:21:42 +0000 (+0200) Subject: doveconf : Don't output the "key =" prefix. X-Git-Tag: 2.0.beta6~195 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=220cbafd493df38b279fc7871b4027e435898eb9;p=thirdparty%2Fdovecot%2Fcore.git doveconf : Don't output the "key =" prefix. --HG-- branch : HEAD --- diff --git a/src/config/doveconf.c b/src/config/doveconf.c index 8129e8ec48..e371aa19ca 100644 --- a/src/config/doveconf.c +++ b/src/config/doveconf.c @@ -408,7 +408,7 @@ config_dump_one(const struct config_filter *filter, array_foreach(&ctx->strings, str) { if (strncmp(*str, setting_name_filter, len) == 0 && (*str)[len] == '=') { - printf("%s = %s\n", setting_name_filter, *str + len+1); + printf("%s\n", *str + len+1); break; } }