aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/netfilter
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2009-04-14 14:24:21 +0200
committerJan Engelhardt <jengelh@medozas.de>2009-05-08 10:30:46 +0200
commit383ca5b874fad082a61af0f47610a1af83e6bb44 (patch)
treee3644c0bcb2c847e1070601c867449d4b09616ad /net/ipv6/netfilter
parentsmsc911x: fix calculation of res_size for ioremap (diff)
downloadlinux-dev-383ca5b874fad082a61af0f47610a1af83e6bb44.tar.xz
linux-dev-383ca5b874fad082a61af0f47610a1af83e6bb44.zip
netfilter: xtables: use NFPROTO_ for xt_proto_init callsites
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'net/ipv6/netfilter')
-rw-r--r--net/ipv6/netfilter/ip6_tables.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/netfilter/ip6_tables.c b/net/ipv6/netfilter/ip6_tables.c
index 219e165aea10..41fbc1eea969 100644
--- a/net/ipv6/netfilter/ip6_tables.c
+++ b/net/ipv6/netfilter/ip6_tables.c
@@ -2234,12 +2234,12 @@ static struct xt_match icmp6_matchstruct __read_mostly = {
static int __net_init ip6_tables_net_init(struct net *net)
{
- return xt_proto_init(net, AF_INET6);
+ return xt_proto_init(net, NFPROTO_IPV6);
}
static void __net_exit ip6_tables_net_exit(struct net *net)
{
- xt_proto_fini(net, AF_INET6);
+ xt_proto_fini(net, NFPROTO_IPV6);
}
static struct pernet_operations ip6_tables_net_ops = {