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
This commit is contained in:
Mark Janssen 2006-01-11 12:52:04 +00:00
parent f4327eddcc
commit 7c4a0b9c6b
2 changed files with 6 additions and 1 deletions

View file

@ -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

3
http.c
View file

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