From: Patrick McHardy Date: Tue, 18 Dec 2007 06:37:20 +0000 (-0800) Subject: [NETFILTER]: nf_nat_proto_gre: add missing module reference X-Git-Tag: v2.6.25-rc1~1162^2~1013 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=3ee9e760387c38558df976bc2905959826adf331;p=linux.git [NETFILTER]: nf_nat_proto_gre: add missing module reference Signed-off-by: Patrick McHardy Signed-off-by: David S. Miller --- 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, static struct nf_nat_protocol gre __read_mostly = { .name = "GRE", .protonum = IPPROTO_GRE, + .me = THIS_MODULE, .manip_pkt = gre_manip_pkt, .in_range = gre_in_range, .unique_tuple = gre_unique_tuple,