summaryrefslogtreecommitdiffstats
path: root/iptables/xtables-eb.c
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2023-03-15 08:33:39 +0100
committerFlorian Westphal <fw@strlen.de>2023-03-15 08:34:02 +0100
commit8758e5577c4e40b0f3c7f32da28d385f6278a523 (patch)
tree035b65c1affdcc68f56b449b84e7489dac7a90b0 /iptables/xtables-eb.c
parentad84e8870ef27bfc662edc0caedd74dac82e1c9d (diff)
iptables-nft: remove unused function argument
Not used, all callers pass NULL. Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'iptables/xtables-eb.c')
-rw-r--r--iptables/xtables-eb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iptables/xtables-eb.c b/iptables/xtables-eb.c
index 068dffd2..bf35f52b 100644
--- a/iptables/xtables-eb.c
+++ b/iptables/xtables-eb.c
@@ -99,7 +99,7 @@ append_entry(struct nft_handle *h,
int ret = 1;
if (append)
- ret = nft_cmd_rule_append(h, chain, table, cs, NULL, verbose);
+ ret = nft_cmd_rule_append(h, chain, table, cs, verbose);
else
ret = nft_cmd_rule_insert(h, chain, table, cs, rule_nr, verbose);