[dovecot-cvs] dovecot/src/lib-storage mail-storage.c,1.58,1.59
cras at dovecot.org
cras at dovecot.org
Sun Sep 10 15:48:26 EEST 2006
- Previous message: [dovecot-cvs] dovecot/src/lib-sql driver-mysql.c, 1.24, 1.25 sql-api.c, 1.12, 1.13
- Next message: [dovecot-cvs] dovecot/src/lib-storage/index index-mail-headers.c, 1.67, 1.68 index-mail.c, 1.106, 1.107 index-sort.c, 1.14, 1.15
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/cvs/dovecot/src/lib-storage
In directory talvi:/tmp/cvs-serv24049/lib-storage
Modified Files:
mail-storage.c
Log Message:
Replaced ARRAY_CREATE() macro with [ipt]_array_init() macros. The macro
has no side effects so it might as well be lowercased.
Index: mail-storage.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib-storage/mail-storage.c,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -d -r1.58 -r1.59
--- mail-storage.c 10 Sep 2006 12:33:15 -0000 1.58
+++ mail-storage.c 10 Sep 2006 12:48:23 -0000 1.59
@@ -33,7 +33,7 @@
void mail_storage_init(void)
{
- ARRAY_CREATE(&storages, default_pool, 8);
+ i_array_init(&storages, 8);
mail_storage_mail_index_module_id = mail_index_module_id++;
}
- Previous message: [dovecot-cvs] dovecot/src/lib-sql driver-mysql.c, 1.24, 1.25 sql-api.c, 1.12, 1.13
- Next message: [dovecot-cvs] dovecot/src/lib-storage/index index-mail-headers.c, 1.67, 1.68 index-mail.c, 1.106, 1.107 index-sort.c, 1.14, 1.15
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the dovecot-cvs
mailing list