summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorOndrej Zajicek (work) <santiago@crfreenet.org>2017-01-24 15:35:38 +0100
committerOndrej Zajicek (work) <santiago@crfreenet.org>2017-01-24 15:35:38 +0100
commitda65a3d898fde0ce567782d86919a66e29916ed7 (patch)
tree44a35b574713468284d43ac0127080ad52fcd15a /filter
parentf6e6c3b5a5997ffc67d96785bbde76bcec072890 (diff)
Filter: Fix missing case for !~ operator
Thanks to Vincent Bernat for the patch.
Diffstat (limited to 'filter')
-rw-r--r--filter/filter.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/filter/filter.c b/filter/filter.c
index 85a06258..f18970e0 100644
--- a/filter/filter.c
+++ b/filter/filter.c
@@ -1559,6 +1559,7 @@ i_same(struct f_inst *f1, struct f_inst *f2)
case P('<','='): TWOARGS; break;
case '!': ONEARG; break;
+ case P('!', '~'):
case '~': TWOARGS; break;
case P('d','e'): ONEARG; break;