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 ); }