diff src/lib-storage/index/dbox/dbox-save.c @ 3863:55df57c028d4 HEAD

Added "bool" type and changed all ints that were used as booleans to bool.
author Timo Sirainen <tss@iki.fi>
date Fri, 13 Jan 2006 22:25:57 +0200
parents fd0986477809
children 928229f8b3e6
line wrap: on
line diff
--- a/src/lib-storage/index/dbox/dbox-save.c	Fri Jan 13 17:11:47 2006 +0200
+++ b/src/lib-storage/index/dbox/dbox-save.c	Fri Jan 13 22:25:57 2006 +0200
@@ -29,7 +29,7 @@
 	uint64_t hdr_offset;
 	uint64_t mail_offset;
 
-	int failed;
+	bool failed;
 };
 
 struct mail_save_context *
@@ -37,7 +37,7 @@
 	       enum mail_flags flags, struct mail_keywords *keywords,
 	       time_t received_date, int timezone_offset __attr_unused__,
 	       const char *from_envelope __attr_unused__,
-	       struct istream *input, int want_mail __attr_unused__)
+	       struct istream *input, bool want_mail __attr_unused__)
 {
 	struct dbox_transaction_context *t =
 		(struct dbox_transaction_context *)_t;