* [NETFILTER 5/7]: Missing owner-field initialization in ip6table_raw
@ 2005-06-20 23:04 Patrick McHardy
0 siblings, 0 replies; only message in thread
From: Patrick McHardy @ 2005-06-20 23:04 UTC (permalink / raw)
To: David S. Miller; +Cc: Netfilter Development Mailinglist
[-- Attachment #1: 05.diff --]
[-- Type: text/x-patch, Size: 1135 bytes --]
[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>
---
commit 2976a51fd8ab66770b1b3083ffaa41bd05d70e1e
tree 1aff9696e4fe8368fc9bf5ac4bcb8c89982e91ad
parent 9b4be665b104791bd5605849391ed7123e14edd8
author Patrick McHardy <kaber@trash.net> Mon, 20 Jun 2005 18:50:47
committer Patrick McHardy <kaber@trash.net> Mon, 20 Jun 2005 18:50:47
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
--- 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,
},
};
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-06-20 23:04 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-20 23:04 [NETFILTER 5/7]: Missing owner-field initialization in ip6table_raw Patrick McHardy
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.