From: Alin Nastac Date: Tue, 10 Sep 2019 14:15:13 +0000 (+0200) Subject: firewall3: fix typo that affects ICMPv6 rules with numeric icmp_type X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=c26f8907d1d2921018240774b75cf9cfda352fa7;p=project%2Ffirewall3.git firewall3: fix typo that affects ICMPv6 rules with numeric icmp_type Problem can be reproduced with a rule like this: option src 'wan' option family 'ipv6' option proto 'icmp' option icmp_type '128' option target 'DROP' The resulted rule will set --icmpv6-type to 128/255. Signed-off-by: Alin Nastac --- diff --git a/options.c b/options.c index c763d9e..7870143 100644 --- a/options.c +++ b/options.c @@ -568,7 +568,7 @@ fw3_parse_icmptype(void *ptr, const char *val, bool is_list) } icmp.type6 = icmp.type; - icmp.code6_min = icmp.code_max; + icmp.code6_min = icmp.code_min; icmp.code6_max = icmp.code_max; v4 = true;