diff options
author | Patrick McHardy <kaber@trash.net> | 2005-06-21 14:03:01 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-06-21 14:03:01 -0700 |
commit | 97216c799a6496163be8c81c9ceed297d92956c5 (patch) | |
tree | 9bd1d85b486c428ae5d12592997cf7668db63097 /net/ipv6 | |
parent | 1d3cdb41f52e299f70b66cbb569bff5216f3643a (diff) | |
download | op-kernel-dev-97216c799a6496163be8c81c9ceed297d92956c5.zip op-kernel-dev-97216c799a6496163be8c81c9ceed297d92956c5.tar.gz |
[NETFILTER]: Missing owner-field initialization in ip6table_raw
I missed this one when fixing up iptable_raw.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/netfilter/ip6table_raw.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/ipv6/netfilter/ip6table_raw.c b/net/ipv6/netfilter/ip6table_raw.c index 71407be..c2982ef 100644 --- a/net/ipv6/netfilter/ip6table_raw.c +++ b/net/ipv6/netfilter/ip6table_raw.c @@ -129,13 +129,15 @@ static struct nf_hook_ops ip6t_ops[] = { .hook = ip6t_hook, .pf = PF_INET6, .hooknum = NF_IP6_PRE_ROUTING, - .priority = NF_IP6_PRI_FIRST + .priority = NF_IP6_PRI_FIRST, + .owner = THIS_MODULE, }, { .hook = ip6t_hook, .pf = PF_INET6, .hooknum = NF_IP6_LOCAL_OUT, - .priority = NF_IP6_PRI_FIRST + .priority = NF_IP6_PRI_FIRST, + .owner = THIS_MODULE, }, }; |