dovecot-1.1: Compiler warning fix.

dovecot at dovecot.org dovecot at dovecot.org
Mon Jul 21 17:38:18 EEST 2008


details:   http://hg.dovecot.org/dovecot-1.1/rev/119e564d4732
changeset: 7788:119e564d4732
user:      Timo Sirainen <tss at iki.fi>
date:      Mon Jul 21 17:38:15 2008 +0300
description:
Compiler warning fix.

diffstat:

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

diffs (12 lines):

diff -r b6ab2e6835e4 -r 119e564d4732 src/lib-storage/mailbox-list.c
--- a/src/lib-storage/mailbox-list.c	Mon Jul 21 15:59:51 2008 +0300
+++ b/src/lib-storage/mailbox-list.c	Mon Jul 21 17:38:15 2008 +0300
@@ -281,7 +281,7 @@ void mailbox_list_get_permissions(struct
 	if ((list->flags & MAILBOX_LIST_FLAG_DEBUG) != 0) {
 		i_info("Namespace %s: Using permissions from %s: "
 		       "mode=0%o gid=%ld", list->ns->prefix, path,
-		       list->file_create_mode,
+		       (int)list->file_create_mode,
 		       list->file_create_gid == (gid_t)-1 ? -1L :
 		       (long)list->file_create_gid);
 	}


More information about the dovecot-cvs mailing list