[dovecot-cvs] dovecot/src/plugins/trash trash-plugin.c,1.8,1.9

cras at dovecot.org cras at dovecot.org
Sun Sep 10 15:33:38 EEST 2006


Update of /var/lib/cvs/dovecot/src/plugins/trash
In directory talvi:/tmp/cvs-serv1034/plugins/trash

Modified Files:
	trash-plugin.c 
Log Message:
Removed type parameter from ARRAY_CREATE since it's not needed anymore.



Index: trash-plugin.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/plugins/trash/trash-plugin.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- trash-plugin.c	30 Jul 2006 18:32:08 -0000	1.8
+++ trash-plugin.c	10 Sep 2006 12:33:33 -0000	1.9
@@ -195,7 +195,7 @@
 	}
 
 	p_clear(config_pool);
-	ARRAY_CREATE(&trash_boxes, config_pool, struct trash_mailbox, 8);
+	ARRAY_CREATE(&trash_boxes, config_pool, 8);
 
 	input = i_stream_create_file(fd, default_pool, (size_t)-1, FALSE);
 	while ((line = i_stream_read_next_line(input)) != NULL) {



More information about the dovecot-cvs mailing list