Output formatting changes.

git-svn-id: https://proxytunnel.svn.sourceforge.net/svnroot/proxytunnel/trunk/proxytunnel@193 bc163920-b10d-0410-b2c5-a5491ca2ceef
This commit is contained in:
Dag Wieers 2008-01-21 21:38:55 +00:00
parent abdbfbb6c0
commit 3756010135

8
http.c
View file

@ -161,7 +161,7 @@ void proxy_protocol(PTSTREAM *pts)
}
else
{
strzcat( buf, "Proxy-authorization: Basic %s\r\n", basicauth );
strzcat( buf, "Proxy-Authorization: Basic %s\r\n", basicauth );
}
}
@ -194,8 +194,8 @@ void proxy_protocol(PTSTREAM *pts)
/*
* Read the first line of the response and analyze it
*/
if( args_info.verbose_flag )
message( "Data received from local proxy:\n");
// if( args_info.verbose_flag )
// message( "Data received from local proxy:\n");
analyze_HTTP(pts);
@ -212,7 +212,7 @@ void proxy_protocol(PTSTREAM *pts)
if ( args_info.user_given && args_info.pass_given )
{
strzcat( buf, "Proxy-authorization: Basic %s\r\n", basicauth );
strzcat( buf, "Proxy-Authorization: Basic %s\r\n", basicauth );
}
strzcat( buf, "Proxy-Connection: Keep-Alive\r\n");