diff options
Diffstat (limited to 'camel')
-rw-r--r-- | camel/ChangeLog | 4 | ||||
-rw-r--r-- | camel/camel-folder-search.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index a02d92990a..53a99e5516 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,7 @@ +2000-09-02 Lauris Kaplinski <lauris@helixcode.com> + + * camel-folder-search (search_header_contains): Use e_utf8_strstrcase + 2000-09-01 Christopher James Lahey <clahey@helixcode.com> * providers/imap/camel-imap-utils.c: Removed some unused diff --git a/camel/camel-folder-search.c b/camel/camel-folder-search.c index 1c68f369ee..95b2f3d636 100644 --- a/camel/camel-folder-search.c +++ b/camel/camel-folder-search.c @@ -27,6 +27,7 @@ #include <string.h> #include <glib.h> +#include <e-util/e-unicode.h> #include "camel-folder-search.h" #include "string-utils.h" @@ -406,7 +407,7 @@ search_header_contains(struct _ESExp *f, int argc, struct _ESExpResult **argv, C /* performs an OR of all words */ for (i=1;i<argc && !truth;i++) { if (argv[i]->type == ESEXP_RES_STRING - && e_strstrcase (header, argv[i]->value.string)) { + && e_utf8_strstrcase (header, argv[i]->value.string)) { r(printf("%s got a match with %s of %s\n", search->current->uid, header, argv[i]->value.string)); truth = TRUE; break; |