From: Ondrej Zajicek (work) Date: Tue, 24 Jan 2017 14:35:38 +0000 (+0100) Subject: Filter: Fix missing case for !~ operator X-Git-Tag: v2.0.0-pre1~32^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da65a3d898fde0ce567782d86919a66e29916ed7;p=thirdparty%2Fbird.git Filter: Fix missing case for !~ operator Thanks to Vincent Bernat for the patch. --- diff --git a/filter/filter.c b/filter/filter.c index 85a062586..f18970e05 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;