[dovecot-cvs] dovecot/src/imap imap-search.c,1.8,1.9
cras at dovecot.org
cras at dovecot.org
Mon Dec 20 06:56:24 EET 2004
Update of /var/lib/cvs/dovecot/src/imap
In directory talvi:/tmp/cvs-serv23006
Modified Files:
imap-search.c
Log Message:
Don't try to uppercase search strings. It breaks some character sets.
Index: imap-search.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/imap/imap-search.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- imap-search.c 19 Dec 2004 05:11:05 -0000 1.8
+++ imap-search.c 20 Dec 2004 04:56:21 -0000 1.9
@@ -99,7 +99,7 @@
return FALSE;
}
- sarg->value.str = str_ucase(p_strdup(data->pool, IMAP_ARG_STR(*args)));
+ sarg->value.str = p_strdup(data->pool, IMAP_ARG_STR(*args));
*args += 1;
if (hdr_name != NULL)
More information about the dovecot-cvs
mailing list