diff options
author | Jan Engelhardt <jengelh@computergmbh.de> | 2008-04-14 05:15:44 -0400 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2008-04-14 05:15:44 -0400 |
commit | c2f9c68398ec724738509f95f1599378ebcc45e0 (patch) | |
tree | f29e04a2bdf31ea16e636a94a2f8b035c14226b9 /net | |
parent | 3bb0362d2f53fa54a17b88c96b43fc093e47699b (diff) |
[NETFILTER]: Explicitly initialize .priority in arptable_filter
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/netfilter/arptable_filter.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/ipv4/netfilter/arptable_filter.c b/net/ipv4/netfilter/arptable_filter.c index 9f6526c87757..3be4d07e7ed9 100644 --- a/net/ipv4/netfilter/arptable_filter.c +++ b/net/ipv4/netfilter/arptable_filter.c | |||
@@ -70,18 +70,21 @@ static struct nf_hook_ops arpt_ops[] __read_mostly = { | |||
70 | .owner = THIS_MODULE, | 70 | .owner = THIS_MODULE, |
71 | .pf = NF_ARP, | 71 | .pf = NF_ARP, |
72 | .hooknum = NF_ARP_IN, | 72 | .hooknum = NF_ARP_IN, |
73 | .priority = NF_IP_PRI_FILTER, | ||
73 | }, | 74 | }, |
74 | { | 75 | { |
75 | .hook = arpt_hook, | 76 | .hook = arpt_hook, |
76 | .owner = THIS_MODULE, | 77 | .owner = THIS_MODULE, |
77 | .pf = NF_ARP, | 78 | .pf = NF_ARP, |
78 | .hooknum = NF_ARP_OUT, | 79 | .hooknum = NF_ARP_OUT, |
80 | .priority = NF_IP_PRI_FILTER, | ||
79 | }, | 81 | }, |
80 | { | 82 | { |
81 | .hook = arpt_hook, | 83 | .hook = arpt_hook, |
82 | .owner = THIS_MODULE, | 84 | .owner = THIS_MODULE, |
83 | .pf = NF_ARP, | 85 | .pf = NF_ARP, |
84 | .hooknum = NF_ARP_FORWARD, | 86 | .hooknum = NF_ARP_FORWARD, |
87 | .priority = NF_IP_PRI_FILTER, | ||
85 | }, | 88 | }, |
86 | }; | 89 | }; |
87 | 90 | ||