From 932d5c3fb94acc499c8a6264e354ab1e33316b72 Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Tue, 5 Feb 2019 17:01:42 +0100 Subject: xshared: Explicitly pass target to command_jump() The use of global 'optarg' variable inside that function is a mess, but most importantly it limits its applicability to input parsers. Fix this by having it take the option argument as a parameter. Signed-off-by: Phil Sutter Signed-off-by: Florian Westphal --- iptables/xtables-eb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iptables/xtables-eb.c') diff --git a/iptables/xtables-eb.c b/iptables/xtables-eb.c index 75d43963..4d2e6f68 100644 --- a/iptables/xtables-eb.c +++ b/iptables/xtables-eb.c @@ -1011,7 +1011,7 @@ print_zero: } else if (c == 'j') { ebt_check_option2(&flags, OPT_JUMP); if (strcmp(optarg, "CONTINUE") != 0) { - command_jump(&cs); + command_jump(&cs, optarg); } break; } else if (c == 's') { -- cgit v1.2.3