[dovecot-cvs] dovecot/src/lib-storage/index/mbox mbox-storage.c, 1.115, 1.116 mbox-storage.h, 1.35, 1.36

cras at dovecot.org cras at dovecot.org
Fri Apr 8 15:14:46 EEST 2005


Update of /var/lib/cvs/dovecot/src/lib-storage/index/mbox
In directory talvi:/tmp/cvs-serv22164/lib-storage/index/mbox

Modified Files:
	mbox-storage.c mbox-storage.h 
Log Message:
Several size_t -> unsigned int changes. Try to keep "unsigned int" for
counters, size_t for actual memory range sizes.



Index: mbox-storage.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib-storage/index/mbox/mbox-storage.c,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -d -r1.115 -r1.116
--- mbox-storage.c	3 Apr 2005 11:36:19 -0000	1.115
+++ mbox-storage.c	8 Apr 2005 12:14:43 -0000	1.116
@@ -32,7 +32,7 @@
 	"X-Status",
 	"X-UID",
 };
-size_t mbox_hide_headers_count = 7;
+unsigned int mbox_hide_headers_count = 7;
 
 extern struct mail_storage mbox_storage;
 extern struct mailbox mbox_mailbox;

Index: mbox-storage.h
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib-storage/index/mbox/mbox-storage.h,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- mbox-storage.h	15 Mar 2005 19:01:53 -0000	1.35
+++ mbox-storage.h	8 Apr 2005 12:14:43 -0000	1.36
@@ -21,7 +21,7 @@
 
 extern struct mail_vfuncs mbox_mail_vfuncs;
 extern const char *mbox_hide_headers[];
-extern size_t mbox_hide_headers_count;
+extern unsigned int mbox_hide_headers_count;
 
 int mbox_set_syscall_error(struct index_mailbox *ibox, const char *function);
 



More information about the dovecot-cvs mailing list