[dovecot-cvs] dovecot/src/dict dict-server.c,1.17,1.18
cras at dovecot.org
cras at dovecot.org
Sun Sep 10 15:48:15 EEST 2006
- Previous message: [dovecot-cvs] dovecot/src/auth auth-master-listener.c, 1.9, 1.10 userdb-static.c, 1.20, 1.21
- Next message: [dovecot-cvs] dovecot/src/imap commands-util.c, 1.50, 1.51 imap-fetch.c, 1.46, 1.47 imap-thread.c, 1.24, 1.25
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/cvs/dovecot/src/dict
In directory talvi:/tmp/cvs-serv24049/dict
Modified Files:
dict-server.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: dict-server.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/dict/dict-server.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- dict-server.c 10 Sep 2006 12:33:06 -0000 1.17
+++ dict-server.c 10 Sep 2006 12:48:13 -0000 1.18
@@ -155,7 +155,7 @@
}
if (!array_is_created(&conn->transactions))
- ARRAY_CREATE(&conn->transactions, default_pool, 4);
+ i_array_init(&conn->transactions, 4);
/* <id> */
trans = array_append_space(&conn->transactions);
- Previous message: [dovecot-cvs] dovecot/src/auth auth-master-listener.c, 1.9, 1.10 userdb-static.c, 1.20, 1.21
- Next message: [dovecot-cvs] dovecot/src/imap commands-util.c, 1.50, 1.51 imap-fetch.c, 1.46, 1.47 imap-thread.c, 1.24, 1.25
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the dovecot-cvs
mailing list