aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/mbox/camel-mbox-search.c
diff options
context:
space:
mode:
authorMichael Zucci <zucchi@src.gnome.org>2000-05-02 09:57:55 +0800
committerMichael Zucci <zucchi@src.gnome.org>2000-05-02 09:57:55 +0800
commitdf0650ac1e84245d0812332f81a101d70d7e19ed (patch)
treea299857e1ff9cfc85ce0cb558615f63c2c20fced /camel/providers/mbox/camel-mbox-search.c
parent46a917144878351adb2db43ab27179a271a03d7d (diff)
downloadgsoc2013-evolution-df0650ac1e84245d0812332f81a101d70d7e19ed.tar
gsoc2013-evolution-df0650ac1e84245d0812332f81a101d70d7e19ed.tar.gz
gsoc2013-evolution-df0650ac1e84245d0812332f81a101d70d7e19ed.tar.bz2
gsoc2013-evolution-df0650ac1e84245d0812332f81a101d70d7e19ed.tar.lz
gsoc2013-evolution-df0650ac1e84245d0812332f81a101d70d7e19ed.tar.xz
gsoc2013-evolution-df0650ac1e84245d0812332f81a101d70d7e19ed.tar.zst
gsoc2013-evolution-df0650ac1e84245d0812332f81a101d70d7e19ed.zip
> (func_header_contains): Debug out some search stuff.
> (index_folder): Make sure we index using a decimal uid, since > thats what everything else indexes off (oops). > Upped SUMMARY_VERSION as a result. > > * camel-folder.h: Removed CamelSearchFunc. svn path=/trunk/; revision=2741
Diffstat (limited to 'camel/providers/mbox/camel-mbox-search.c')
-rw-r--r--camel/providers/mbox/camel-mbox-search.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/mbox/camel-mbox-search.c b/camel/providers/mbox/camel-mbox-search.c
index 094533edbd..107984d75b 100644
--- a/camel/providers/mbox/camel-mbox-search.c
+++ b/camel/providers/mbox/camel-mbox-search.c
@@ -240,7 +240,7 @@ func_header_contains(struct _ESExp *f, int argc, struct _ESExpResult **argv, voi
for (i=1;i<argc && !truth;i++) {
if (argv[i]->type == ESEXP_RES_STRING
&& strstr(header, argv[i]->value.string)) {
- printf("%s got a match with %s of %s\n", ctx->message_current->info.uid, header, argv[i]->value.string);
+ r(printf("%s got a match with %s of %s\n", ctx->message_current->info.uid, header, argv[i]->value.string));
truth = TRUE;
break;
}