aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/netfilter/arptable_filter.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2015-04-03 21:18:46 -0400
committerDavid S. Miller <davem@davemloft.net>2015-04-04 13:26:52 -0400
commitb85c3dc9bd5347ad9540ec8d103b7c049c48b7cd (patch)
tree181f959eaf7d8084ff33f64d3356e3213c5f01bf /net/ipv4/netfilter/arptable_filter.c
parentnetfilter: Pass nf_hook_state through nft_set_pktinfo*(). (diff)
downloadlinux-dev-b85c3dc9bd5347ad9540ec8d103b7c049c48b7cd.tar.xz
linux-dev-b85c3dc9bd5347ad9540ec8d103b7c049c48b7cd.zip
netfilter: Pass nf_hook_state through arpt_do_table().
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/netfilter/arptable_filter.c')
-rw-r--r--net/ipv4/netfilter/arptable_filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/netfilter/arptable_filter.c b/net/ipv4/netfilter/arptable_filter.c
index 6a641cb41062..93876d03120c 100644
--- a/net/ipv4/netfilter/arptable_filter.c
+++ b/net/ipv4/netfilter/arptable_filter.c
@@ -32,7 +32,7 @@ arptable_filter_hook(const struct nf_hook_ops *ops, struct sk_buff *skb,
{
const struct net *net = dev_net(state->in ? state->in : state->out);
- return arpt_do_table(skb, ops->hooknum, state->in, state->out,
+ return arpt_do_table(skb, ops->hooknum, state,
net->ipv4.arptable_filter);
}