From 7c4a0b9c6bb8b39deca2af42a6160164cb5801ee Mon Sep 17 00:00:00 2001 From: Mark Janssen Date: Wed, 11 Jan 2006 12:52:04 +0000 Subject: [PATCH] change function-return to make hp's compiler happy git-svn-id: https://proxytunnel.svn.sourceforge.net/svnroot/proxytunnel/trunk/proxytunnel@83 bc163920-b10d-0410-b2c5-a5491ca2ceef --- CHANGES | 4 ++++ http.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index b4afcb6..bd4e849 100755 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +Changes to proxytunnel version 1.5.x -- not yet released + +- Small change to make compiler on tandem/hp-nonstop happy + Changes to proxytunnel version 1.5.2 -- Fri Dec 16 09:27:11 CET 2005 - Moved some declarations around in ntlm.c to make gcc/openbsd happier diff --git a/http.c b/http.c index d7dfdfb..3cacc49 100644 --- a/http.c +++ b/http.c @@ -63,7 +63,8 @@ void analyze_HTTP() } while ( strcmp( buf, "\r\n" ) != 0 ); } if (ntlm_challenge == 1) { - return proxy_protocol(); + proxy_protocol(); + return; } exit( 1 ); }