diff options
author | Patrick McHardy <kaber@trash.net> | 2007-12-18 01:37:20 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:58:55 -0500 |
commit | 3ee9e760387c38558df976bc2905959826adf331 (patch) | |
tree | 847ac96324a1b6d00c085af940ed1284667a6615 | |
parent | d978e5daec544ec72b28bf72a30dc9ac3da23a35 (diff) |
[NETFILTER]: nf_nat_proto_gre: add missing module reference
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv4/netfilter/nf_nat_proto_gre.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv4/netfilter/nf_nat_proto_gre.c b/net/ipv4/netfilter/nf_nat_proto_gre.c index b820f9960356..945e0ae78ffa 100644 --- a/net/ipv4/netfilter/nf_nat_proto_gre.c +++ b/net/ipv4/netfilter/nf_nat_proto_gre.c | |||
@@ -138,6 +138,7 @@ gre_manip_pkt(struct sk_buff *skb, unsigned int iphdroff, | |||
138 | static struct nf_nat_protocol gre __read_mostly = { | 138 | static struct nf_nat_protocol gre __read_mostly = { |
139 | .name = "GRE", | 139 | .name = "GRE", |
140 | .protonum = IPPROTO_GRE, | 140 | .protonum = IPPROTO_GRE, |
141 | .me = THIS_MODULE, | ||
141 | .manip_pkt = gre_manip_pkt, | 142 | .manip_pkt = gre_manip_pkt, |
142 | .in_range = gre_in_range, | 143 | .in_range = gre_in_range, |
143 | .unique_tuple = gre_unique_tuple, | 144 | .unique_tuple = gre_unique_tuple, |