aboutsummaryrefslogtreecommitdiffstats
path: root/filter/filter-code.c
diff options
context:
space:
mode:
Diffstat (limited to 'filter/filter-code.c')
-rw-r--r--filter/filter-code.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/filter/filter-code.c b/filter/filter-code.c
index 11739a318d..7b308506cc 100644
--- a/filter/filter-code.c
+++ b/filter/filter-code.c
@@ -109,12 +109,14 @@ build_code (FilterElement *fe, GString *out, struct _FilterPart *ff)
{
GList *l;
FilterInput *fi = (FilterInput *)fe;
-
+
+ g_string_append(out, "(match-all ");
l = fi->values;
while (l) {
g_string_append(out, (char *)l->data);
l = g_list_next(l);
}
+ g_string_append(out, ")");
}
/* and we have no value */