From: Harald Welte Date: Fri, 23 Sep 2005 06:44:58 +0000 (-0700) Subject: [NETFILTER] fix DEBUG statement in PPTP helper X-Git-Tag: v2.6.14-rc3~51^2~22 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=0ae5d253adcc467b1c52b512bbca9419eb438409;p=~shefty%2Frdma-dev.git [NETFILTER] fix DEBUG statement in PPTP helper As noted by Alexey Dobriyan, the DEBUGP statement prints the wrong callID. Signed-off-by: Harald Welte Signed-off-by: David S. Miller --- diff --git a/net/ipv4/netfilter/ip_conntrack_helper_pptp.c b/net/ipv4/netfilter/ip_conntrack_helper_pptp.c index 79db5b70d5f..11758797870 100644 --- a/net/ipv4/netfilter/ip_conntrack_helper_pptp.c +++ b/net/ipv4/netfilter/ip_conntrack_helper_pptp.c @@ -485,7 +485,7 @@ pptp_inbound_pkt(struct sk_buff **pskb, if (info->pns_call_id != ntohs(*pcid)) { DEBUGP("%s for unknown CallID %u\n", - pptp_msg_name[msg], ntohs(*cid)); + pptp_msg_name[msg], ntohs(*pcid)); break; }