diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2006-05-29 05:51:05 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-05-29 05:51:05 (GMT) |
commit | 7114b0bb6df7b2db266ba4847e4dd8333fa98a9a (patch) | |
tree | 049268cb57e572b8cc47d6891638975b6bf80413 /net | |
parent | ca3ba88d0cf4b5d7a628caf505c231162dde9429 (diff) | |
download | linux-7114b0bb6df7b2db266ba4847e4dd8333fa98a9a.tar.xz |
[NETFILTER]: PPTP helper: fix sstate/cstate typo
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/netfilter/ip_conntrack_helper_pptp.c b/net/ipv4/netfilter/ip_conntrack_helper_pptp.c index 7d3ba43..8ccfe17 100644 --- a/net/ipv4/netfilter/ip_conntrack_helper_pptp.c +++ b/net/ipv4/netfilter/ip_conntrack_helper_pptp.c @@ -469,8 +469,8 @@ pptp_inbound_pkt(struct sk_buff **pskb, DEBUGP("%s but no session\n", pptp_msg_name[msg]); break; } - if (info->sstate != PPTP_CALL_IN_REP - && info->sstate != PPTP_CALL_IN_CONF) { + if (info->cstate != PPTP_CALL_IN_REP + && info->cstate != PPTP_CALL_IN_CONF) { DEBUGP("%s but never sent IN_CALL_REPLY\n", pptp_msg_name[msg]); break; |