From: Ana Rey Date: Mon, 17 Feb 2014 10:46:11 +0000 (+0000) Subject: src: proto: fixed a rreply symbol X-Git-Tag: v0.2~36^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=413eded14172324ca9b659746802bcdfba9e5376;p=thirdparty%2Fnftables.git src: proto: fixed a rreply symbol There is a bug with rreply symbol. The rreply and reply symbol were the same. There is a reproduction of this bug here: $ sudo nft add rule arp art-t filter arp operation reply $ sudo nft list table arp art-t table arp art-t { chain filter { type filter hook input priority 0; arp operation 512 } } $ sudo nft add rule arp art-t filter arp operation rreply $ sudo nft list table arp art-t table arp art-t { chain filter { type filter hook input priority 0; arp operation 512 <===== arp operation 512 <===== } } Signed-off-by: Patrick McHardy ---