Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0ae5d253 authored by Harald Welte's avatar Harald Welte Committed by David S. Miller
Browse files

[NETFILTER] fix DEBUG statement in PPTP helper



As noted by Alexey Dobriyan, the DEBUGP statement prints the wrong
callID.

Signed-off-by: default avatarHarald Welte <laforge@netfilter.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2a7bc3c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -485,7 +485,7 @@ pptp_inbound_pkt(struct sk_buff **pskb,


		if (info->pns_call_id != ntohs(*pcid)) {
		if (info->pns_call_id != ntohs(*pcid)) {
			DEBUGP("%s for unknown CallID %u\n", 
			DEBUGP("%s for unknown CallID %u\n", 
				pptp_msg_name[msg], ntohs(*cid));
				pptp_msg_name[msg], ntohs(*pcid));
			break;
			break;
		}
		}