From: Timo Sirainen Date: Tue, 19 Jan 2010 12:40:13 +0000 (+0200) Subject: doveconf: Show time settings with "s" suffix to make it clear they're seconds. X-Git-Tag: 2.0.beta2~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6b7e35f46e0c92daa5119c1f7d7f309a4c4feb20;p=thirdparty%2Fdovecot%2Fcore.git doveconf: Show time settings with "s" suffix to make it clear they're seconds. --HG-- branch : HEAD --- diff --git a/src/config/config-request.c b/src/config/config-request.c index e6019074db..34407e9ea8 100644 --- a/src/config/config-request.c +++ b/src/config/config-request.c @@ -145,6 +145,9 @@ settings_export(struct settings_export_context *ctx, case SET_UINT_OCT: str_printfa(ctx->value, "0%o", *val); break; + case SET_TIME: + str_printfa(ctx->value, "%u s", *val); + break; default: str_printfa(ctx->value, "%u", *val); break;