dovecot-2.2: Minor code cleanup to previous change.

dovecot at dovecot.org dovecot at dovecot.org
Mon Oct 6 17:17:52 UTC 2014


details:   http://hg.dovecot.org/dovecot-2.2/rev/1b66c30fd421
changeset: 17895:1b66c30fd421
user:      Timo Sirainen <tss at iki.fi>
date:      Mon Oct 06 20:17:19 2014 +0300
description:
Minor code cleanup to previous change.
No need to have a data stack frame here.

diffstat:

 src/lib/failures.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (16 lines):

diff -r e0f37f309685 -r 1b66c30fd421 src/lib/failures.c
--- a/src/lib/failures.c	Mon Oct 06 20:16:07 2014 +0300
+++ b/src/lib/failures.c	Mon Oct 06 20:17:19 2014 +0300
@@ -719,10 +719,10 @@
 	p = strstr(fmt, "%{usecs}");
 	if (p == NULL)
 		log_stamp_format = i_strdup(fmt);
-	else T_BEGIN {
+	else {
 		log_stamp_format = i_strdup_until(fmt, p);
 		log_stamp_format_suffix = i_strdup(p + 8);
-	} T_END;
+	}
 }
 
 void i_set_failure_send_ip(const struct ip_addr *ip)


More information about the dovecot-cvs mailing list