aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2006-08-22 00:35:47 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-22 14:55:33 -0700
commitfe1cb10873b44cf89082465823ee6d4d4ac63ad7 (patch)
tree0176a23fb45e7e45182e5b852a08c6ab16db2015 /net/sched
parent4470bbc749e5551cce914529309456f631e25120 (diff)
downloadlinux-fe1cb10873b44cf89082465823ee6d4d4ac63ad7.tar.gz
[NETFILTER]: x_tables: remove unused argument to target functions
Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r--net/sched/act_ipt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/act_ipt.c b/net/sched/act_ipt.c
index 224c078a398e7..45a3143b86299 100644
--- a/net/sched/act_ipt.c
+++ b/net/sched/act_ipt.c
@@ -222,7 +222,7 @@ static int tcf_ipt(struct sk_buff *skb, struct tc_action *a,
ret = ipt->tcfi_t->u.kernel.target->target(&skb, skb->dev, NULL,
ipt->tcfi_hook,
ipt->tcfi_t->u.kernel.target,
- ipt->tcfi_t->data, NULL);
+ ipt->tcfi_t->data);
switch (ret) {
case NF_ACCEPT:
result = TC_ACT_OK;