diff options
Diffstat (limited to 'camel/camel-folder-search.c')
-rw-r--r-- | camel/camel-folder-search.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/camel-folder-search.c b/camel/camel-folder-search.c index a72a5743ad..cca04d3248 100644 --- a/camel/camel-folder-search.c +++ b/camel/camel-folder-search.c @@ -642,7 +642,8 @@ check_header(struct _ESExp *f, int argc, struct _ESExpResult **argv, CamelFolder /* performs an OR of all words */ for (i=1;i<argc && !truth;i++) { if (argv[i]->type == ESEXP_RES_STRING) - truth = camel_search_header_match(header, argv[i]->value.string, how, type); + truth = camel_search_header_match(header, argv[i]->value.string, + how, type, NULL); } } } |