From c8262f39d15a635a4b08d58069e1fc39b958d25a Mon Sep 17 00:00:00 2001 From: marcus Date: Wed, 4 Aug 2004 15:17:08 +0000 Subject: Fix Skinny and PPTP NAT'ing after the introduction of the {ip,tcp,udp}_next functions. Basically, the ip_next() function was used to get the PPTP and Skinny headers when tcp_next() should have been used instead. Symptoms of this included a segfault in natd when trying to process a PPTP or Skinny packet. Approved by: des --- lib/libalias/alias_pptp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libalias/alias_pptp.c') diff --git a/lib/libalias/alias_pptp.c b/lib/libalias/alias_pptp.c index 174780f..05722b1 100644 --- a/lib/libalias/alias_pptp.c +++ b/lib/libalias/alias_pptp.c @@ -300,7 +300,7 @@ AliasVerifyPptp(struct ip *pip, u_int16_t * ptype) return (NULL); /* Move up to PPTP message header */ - hptr = (PptpMsgHead) ip_next(pip); + hptr = (PptpMsgHead) tcp_next(tc); /* Return the control message type */ *ptype = ntohs(hptr->type); -- cgit v1.1