[dovecot-cvs] dovecot/src/lib strfuncs.c,1.40,1.41
cras at dovecot.org
cras at dovecot.org
Sun Jul 18 04:45:01 EEST 2004
- Previous message: [dovecot-cvs] dovecot/src/auth db-ldap.c,1.21,1.22
- Next message: [dovecot-cvs] dovecot/src/imap imap-fetch-body-section.c, 1.27,
1.28 imap-fetch.c, 1.20, 1.21 imap-fetch.h, 1.6,
1.7 imap-sort.c, 1.13, 1.14 imap-thread.c, 1.10, 1.11
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/dovecot/src/lib
In directory talvi:/tmp/cvs-serv21898
Modified Files:
strfuncs.c
Log Message:
bsearch_strcasecmp() actually called strcmp..
Index: strfuncs.c
===================================================================
RCS file: /home/cvs/dovecot/src/lib/strfuncs.c,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -d -r1.40 -r1.41
--- strfuncs.c 20 Jun 2004 06:14:44 -0000 1.40
+++ strfuncs.c 18 Jul 2004 01:44:59 -0000 1.41
@@ -475,7 +475,7 @@
const char *key = p1;
const char *const *member = p2;
- return strcmp(key, *member);
+ return strcasecmp(key, *member);
}
static const char **_strsplit(const char *data, const char *separators,
- Previous message: [dovecot-cvs] dovecot/src/auth db-ldap.c,1.21,1.22
- Next message: [dovecot-cvs] dovecot/src/imap imap-fetch-body-section.c, 1.27,
1.28 imap-fetch.c, 1.20, 1.21 imap-fetch.h, 1.6,
1.7 imap-sort.c, 1.13, 1.14 imap-thread.c, 1.10, 1.11
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the dovecot-cvs
mailing list