[dovecot-cvs] dovecot/src/imap imap-thread.c,1.32,1.33

tss at dovecot.org tss at dovecot.org
Fri Dec 15 23:50:24 UTC 2006


Update of /var/lib/cvs/dovecot/src/imap
In directory talvi:/tmp/cvs-serv10848

Modified Files:
	imap-thread.c 
Log Message:
Compiler warning fix



Index: imap-thread.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/imap/imap-thread.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- imap-thread.c	15 Dec 2006 18:38:10 -0000	1.32
+++ imap-thread.c	15 Dec 2006 23:50:22 -0000	1.33
@@ -1936,8 +1936,9 @@
 imap_thread_expunge_handler(struct mail_index_sync_map_ctx *sync_ctx,
 			    uint32_t seq, const void *data __attr_unused__,
 			    void **sync_context __attr_unused__,
-			    struct imap_thread_mailbox *tbox)
+			    void *context)
 {
+	struct imap_thread_mailbox *tbox = context;
 	struct thread_context *ctx = tbox->ctx;
 	struct msgid_rec key;
 	const struct mail_thread_rec *rec;



More information about the dovecot-cvs mailing list