Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 97216c79 authored by Patrick McHardy's avatar Patrick McHardy Committed by David S. Miller
Browse files

[NETFILTER]: Missing owner-field initialization in ip6table_raw



I missed this one when fixing up iptable_raw.

Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1d3cdb41
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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,
	},
};