Commit 286fe0af authored by Alexandre Julliard's avatar Alexandre Julliard

Fixed a warning.

parent ae07d8e8
......@@ -508,7 +508,7 @@ BOOL HTTP_InsertProxyAuthorization( LPWININETHTTPREQW lpwhr,
'P','r','o','x','y','-','A','u','t','h','o','r','i','z','a','t','i','o','n',0 };
hdr.lpszValue = HTTP_EncodeBasicAuth( username, password );
hdr.lpszField = szProxyAuthorization;
hdr.lpszField = (WCHAR *)szProxyAuthorization;
hdr.wFlags = HDR_ISREQUEST;
hdr.wCount = 0;
if( !hdr.lpszValue )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment