From: Timo Sirainen Date: Tue, 16 Jun 2009 18:41:02 +0000 (-0400) Subject: expire-tool --test: Don't write LFs after timestamps. X-Git-Tag: 2.0.alpha1~567 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e6d7643bf65dd57fef6dd1d59415168ade5257e;p=thirdparty%2Fdovecot%2Fcore.git expire-tool --test: Don't write LFs after timestamps. --HG-- branch : HEAD --- diff --git a/src/plugins/expire/expire-tool.c b/src/plugins/expire/expire-tool.c index 1f08d39a43..bfc632684d 100644 --- a/src/plugins/expire/expire-tool.c +++ b/src/plugins/expire/expire-tool.c @@ -271,9 +271,9 @@ static void expire_run(struct master_service *service, bool testrun) else T_BEGIN { i_info("%s: timestamp %s (%s) -> %s (%s)", userp, value, - t_strdup(ctime(&expire_time)), + t_strcut(ctime(&expire_time), '\n'), new_value, - t_strdup(ctime(&oldest))); + t_strcut(ctime(&oldest), '\n')); } T_END; } }