[dovecot-cvs] dovecot/src/plugins/quota quota-storage.c,1.2,1.3

cras at dovecot.org cras at dovecot.org
Sat Jan 14 17:19:59 EET 2006


Update of /var/lib/cvs/dovecot/src/plugins/quota
In directory talvi:/tmp/cvs-serv19091/plugins/quota

Modified Files:
	quota-storage.c 
Log Message:
Compiler warning fixes and one real fix for int -> bool changes.



Index: quota-storage.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/plugins/quota/quota-storage.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- quota-storage.c	13 Jan 2006 20:26:42 -0000	1.2
+++ quota-storage.c	14 Jan 2006 15:19:57 -0000	1.3
@@ -109,7 +109,8 @@
 static int quota_check(struct mailbox_transaction_context *t, struct mail *mail)
 {
 	struct quota_transaction_context *qt = QUOTA_CONTEXT(t);
-	int ret, too_large;
+	int ret;
+	bool too_large;
 
 	ret = quota_try_alloc(qt, mail, &too_large);
 	if (ret > 0)



More information about the dovecot-cvs mailing list