From: Pierre Lebleu Date: Wed, 9 May 2018 07:58:59 +0000 (+0200) Subject: helpers: fix the set_helper in the rule structure X-Git-Url: http://git.archive.openwrt.org/?p=project%2Ffirewall3.git;a=commitdiff_plain;h=b45e162eca2c6e913318c4552643aae2a973ae3a;hp=f742ba7d20cb07f6306ebacedbb165b3fc7064ad helpers: fix the set_helper in the rule structure The set_helper field has to be set by set_helper and not helper. Signed-off-by: Pierre Lebleu --- diff --git a/rules.c b/rules.c index 58edcd4..5e1d5f3 100644 --- a/rules.c +++ b/rules.c @@ -33,7 +33,7 @@ const struct fw3_option fw3_rule_opts[] = { FW3_OPT("ipset", setmatch, rule, ipset), FW3_OPT("helper", cthelper, rule, helper), - FW3_OPT("set_helper", cthelper, rule, helper), + FW3_OPT("set_helper", cthelper, rule, set_helper), FW3_LIST("proto", protocol, rule, proto),