Skip to content

Commit

Permalink
[NETFILTER] fix DEBUG statement in PPTP helper
Browse files Browse the repository at this point in the history
As noted by Alexey Dobriyan, the DEBUGP statement prints the wrong
callID.

Signed-off-by: Harald Welte <laforge@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Harald Welte authored and David S. Miller committed Sep 23, 2005
1 parent 2a7bc3c commit 0ae5d25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/ipv4/netfilter/ip_conntrack_helper_pptp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 0ae5d25

Please sign in to comment.