dovecot: Compiler warning fix

dovecot at dovecot.org dovecot at dovecot.org
Sun Sep 30 18:24:43 EEST 2007


details:   http://hg.dovecot.org/dovecot/rev/9534f7adc0c6
changeset: 6521:9534f7adc0c6
user:      Timo Sirainen <tss at iki.fi>
date:      Sun Sep 30 18:23:36 2007 +0300
description:
Compiler warning fix

diffstat:

1 file changed, 2 insertions(+), 1 deletion(-)
src/lib-storage/list/index-mailbox-list.c |    3 ++-

diffs (13 lines):

diff -r 745d5bb908f4 -r 9534f7adc0c6 src/lib-storage/list/index-mailbox-list.c
--- a/src/lib-storage/list/index-mailbox-list.c	Sun Sep 30 18:23:25 2007 +0300
+++ b/src/lib-storage/list/index-mailbox-list.c	Sun Sep 30 18:23:36 2007 +0300
@@ -160,7 +160,8 @@ index_mailbox_list_sync(struct index_mai
 		}
 
 		flags = index_mailbox_list_info_flags_translate(info->flags);
-		mail_index_update_flags(ctx->trans, seq, MODIFY_REPLACE, flags);
+		mail_index_update_flags(ctx->trans, seq, MODIFY_REPLACE,
+					(enum mail_flags)flags);
 	}
 	if (ilist->module_ctx.super.iter_deinit(iter) < 0)
 		ret = -1;


More information about the dovecot-cvs mailing list