dovecot-2.0: doveconf <key>: Don't output the "key =" prefix.
dovecot at dovecot.org
dovecot at dovecot.org
Wed May 19 18:21:46 EEST 2010
details: http://hg.dovecot.org/dovecot-2.0/rev/1c1db8a6cfc7
changeset: 11335:1c1db8a6cfc7
user: Timo Sirainen <tss at iki.fi>
date: Wed May 19 17:21:42 2010 +0200
description:
doveconf <key>: Don't output the "key =" prefix.
diffstat:
src/config/doveconf.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r d6d59ff58511 -r 1c1db8a6cfc7 src/config/doveconf.c
--- a/src/config/doveconf.c Wed May 19 17:07:46 2010 +0200
+++ b/src/config/doveconf.c Wed May 19 17:21:42 2010 +0200
@@ -408,7 +408,7 @@
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;
}
}
More information about the dovecot-cvs
mailing list