summaryrefslogtreecommitdiffstats
path: root/iptables/nft-ipv6.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/nft-ipv6.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/nft-ipv6.c')
-rw-r--r--iptables/nft-ipv6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iptables/nft-ipv6.c b/iptables/nft-ipv6.c
index e9892185..85bb683f 100644
--- a/iptables/nft-ipv6.c
+++ b/iptables/nft-ipv6.c
@@ -331,7 +331,7 @@ nft_ipv6_add_entry(struct nft_handle *h,
&args->d.mask.v6[j], sizeof(struct in6_addr));
if (append) {
ret = nft_cmd_rule_append(h, chain, table,
- cs, NULL, verbose);
+ cs, verbose);
} else {
ret = nft_cmd_rule_insert(h, chain, table,
cs, rulenum, verbose);