Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 17879
b: refs/heads/master
c: a776809
h: refs/heads/master
i:
  17877: 106faba
  17875: 903eb1a
  17871: c2b4046
v: v3
  • Loading branch information
David S. Miller committed Jan 12, 2006
1 parent 2d783c3 commit 685d88e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 82bf7e97ac5b9fd03aea10df6910cad50d6c032d
refs/heads/master: a7768097557be91d0d4c37e8f2e38cd126c4cdf9
2 changes: 1 addition & 1 deletion trunk/net/ipv4/netfilter/ip_conntrack_helper_pptp.c
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ static struct ip_conntrack_helper pptp = {
.help = conntrack_pptp_help
};

extern void __exit ip_ct_proto_gre_fini(void);
extern void ip_ct_proto_gre_fini(void);
extern int __init ip_ct_proto_gre_init(void);

/* ip_conntrack_pptp initialization */
Expand Down
5 changes: 4 additions & 1 deletion trunk/net/ipv4/netfilter/ip_conntrack_proto_gre.c
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,10 @@ int __init ip_ct_proto_gre_init(void)
return ip_conntrack_protocol_register(&gre);
}

void __exit ip_ct_proto_gre_fini(void)
/* This cannot be __exit, as it is invoked from ip_conntrack_helper_pptp.c's
* init() code on errors.
*/
void ip_ct_proto_gre_fini(void)
{
struct list_head *pos, *n;

Expand Down

0 comments on commit 685d88e

Please sign in to comment.