Commit 618c1e17 618c1e179559e80b52884eb3dbec9101b3196f17 by Sergey Poznyakoff

Bugfix in sieve library

* libmu_sieve/sieve-gram.y: Add missing assignment to $$ in testlist
production.  This fixes improper handling of anyof and allof
1 parent 33dff02c
......@@ -180,6 +180,7 @@ testlist : cond
$3->prev = $1.tail;
$1.tail->next = $3;
$1.tail = $3;
$$ = $1;
}
;
......