aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-folder-search.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-07-13 09:35:25 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-07-13 09:35:25 +0800
commite6911693723f9d9c9b274351539f87deffe5beb8 (patch)
tree55aba4557b0b06837655086341331c7cd661adb0 /camel/camel-folder-search.c
parent0b66e8a93bd8d91d456015c36b9556fce4c91ec9 (diff)
downloadgsoc2013-evolution-e6911693723f9d9c9b274351539f87deffe5beb8.tar
gsoc2013-evolution-e6911693723f9d9c9b274351539f87deffe5beb8.tar.gz
gsoc2013-evolution-e6911693723f9d9c9b274351539f87deffe5beb8.tar.bz2
gsoc2013-evolution-e6911693723f9d9c9b274351539f87deffe5beb8.tar.lz
gsoc2013-evolution-e6911693723f9d9c9b274351539f87deffe5beb8.tar.xz
gsoc2013-evolution-e6911693723f9d9c9b274351539f87deffe5beb8.tar.zst
gsoc2013-evolution-e6911693723f9d9c9b274351539f87deffe5beb8.zip
Undid clahey's e_strstrcase because e_strstrcase DOES NOT EXIST in
2000-07-12 Jeffrey Stedfast <fejj@helixcode.com> Undid clahey's e_strstrcase because e_strstrcase DOES NOT EXIST in e-utils/e-utils.c nor anywhere else in Evolution - besides, Camel should remain independant of Evolution. * providers/imap/camel-imap-store.c (imap_connect): Fixed Peter's fix, we don't want to send a string to a %d. svn path=/trunk/; revision=4132
Diffstat (limited to 'camel/camel-folder-search.c')
-rw-r--r--camel/camel-folder-search.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-folder-search.c b/camel/camel-folder-search.c
index 4e77aea94e..714725ea83 100644
--- a/camel/camel-folder-search.c
+++ b/camel/camel-folder-search.c
@@ -381,7 +381,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)) {
+ && 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;