aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/netfilter/iptable_security.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2015-04-03 20:56:08 -0400
committerDavid S. Miller <davem@davemloft.net>2015-04-04 12:47:04 -0400
commit1c491ba2592f621f21a693d43fab06302527fc0f (patch)
treec9bf845770ddced5275bb7f367633ecbbc7b2c03 /net/ipv4/netfilter/iptable_security.c
parentnetfilter: Pass nf_hook_state through nf_nat_ipv4_{in,out,fn,local_fn}(). (diff)
downloadlinux-dev-1c491ba2592f621f21a693d43fab06302527fc0f.tar.xz
linux-dev-1c491ba2592f621f21a693d43fab06302527fc0f.zip
netfilter: Pass nf_hook_state through ipt_do_table().
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/netfilter/iptable_security.c')
-rw-r--r--net/ipv4/netfilter/iptable_security.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/netfilter/iptable_security.c b/net/ipv4/netfilter/iptable_security.c
index d9ad60a57413..4bce3980ccd9 100644
--- a/net/ipv4/netfilter/iptable_security.c
+++ b/net/ipv4/netfilter/iptable_security.c
@@ -49,7 +49,7 @@ iptable_security_hook(const struct nf_hook_ops *ops, struct sk_buff *skb,
return NF_ACCEPT;
net = dev_net(state->in ? state->in : state->out);
- return ipt_do_table(skb, ops->hooknum, state->in, state->out,
+ return ipt_do_table(skb, ops->hooknum, state,
net->ipv4.iptable_security);
}