diff options
author | Patrick McHardy <kaber@trash.net> | 2006-09-20 15:08:56 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-22 18:20:11 -0400 |
commit | 6013c0a13e335674a783215e182c367406294392 (patch) | |
tree | a090b1899c7b96df754df06c537659277328db78 /net | |
parent | 5256f663a0228af9bf69ba74ad9f0928f35713f7 (diff) |
[NETFILTER]: PPTP conntrack: fix header definitions
Fix a few header definitions to match RFC2637. Most importantly the
PptpOutCallRequest header included an invalid padding field and a
size check was disabled because of this.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/netfilter/ip_conntrack_helper_pptp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/netfilter/ip_conntrack_helper_pptp.c b/net/ipv4/netfilter/ip_conntrack_helper_pptp.c index 0510ee50dc65..1a8da9015d8c 100644 --- a/net/ipv4/netfilter/ip_conntrack_helper_pptp.c +++ b/net/ipv4/netfilter/ip_conntrack_helper_pptp.c | |||
@@ -569,7 +569,7 @@ pptp_outbound_pkt(struct sk_buff **pskb, | |||
569 | case PPTP_OUT_CALL_REQUEST: | 569 | case PPTP_OUT_CALL_REQUEST: |
570 | if (reqlen < sizeof(_pptpReq.ocreq)) { | 570 | if (reqlen < sizeof(_pptpReq.ocreq)) { |
571 | DEBUGP("%s: short packet\n", pptp_msg_name[msg]); | 571 | DEBUGP("%s: short packet\n", pptp_msg_name[msg]); |
572 | /* FIXME: break; */ | 572 | break; |
573 | } | 573 | } |
574 | 574 | ||
575 | /* client initiating connection to server */ | 575 | /* client initiating connection to server */ |