dovecot-2.2: Compiler warning fix for 32bit systems

dovecot at dovecot.org dovecot at dovecot.org
Fri Nov 27 13:26:51 UTC 2015


details:   http://hg.dovecot.org/dovecot-2.2/rev/695391a09045
changeset: 19429:695391a09045
user:      Timo Sirainen <tss at iki.fi>
date:      Fri Nov 27 15:26:31 2015 +0200
description:
Compiler warning fix for 32bit systems

diffstat:

 src/lib-storage/mail-autoexpunge.c |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 9d5c59d98857 -r 695391a09045 src/lib-storage/mail-autoexpunge.c
--- a/src/lib-storage/mail-autoexpunge.c	Fri Nov 27 15:24:41 2015 +0200
+++ b/src/lib-storage/mail-autoexpunge.c	Fri Nov 27 15:26:31 2015 +0200
@@ -69,7 +69,7 @@
 
 	array_foreach(&ns->set->mailboxes, box_set) {
 		if ((*box_set)->autoexpunge == 0 ||
-		    ioloop_time < (*box_set)->autoexpunge)
+		    (unsigned int)ioloop_time < (*box_set)->autoexpunge)
 			continue;
 		expire_time = ioloop_time - (*box_set)->autoexpunge;
 		box = mailbox_alloc(ns->list, (*box_set)->name, 0);


More information about the dovecot-cvs mailing list