Module: wine Branch: master Commit: 7ad691a5ee879652c56c15cf637aa4275c045bde URL: http://source.winehq.org/git/wine.git/?a=commit;h=7ad691a5ee879652c56c15cf63...
Author: Jeremy White jwhite@codeweavers.com Date: Thu May 31 10:08:56 2007 -0500
wininet: Mark Proxy Authorization header as a request header, so it actually gets sent.
---
dlls/wininet/http.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/wininet/http.c b/dlls/wininet/http.c index a48d7ae..97cc54b 100644 --- a/dlls/wininet/http.c +++ b/dlls/wininet/http.c @@ -1240,7 +1240,7 @@ static BOOL HTTP_InsertProxyAuthorization( LPWININETHTTPREQW lpwhr, TRACE( "Inserting authorization: %s\n", debugstr_w( authorization ) );
HTTP_ProcessHeader(lpwhr, szProxy_Authorization, authorization, - HTTP_ADDHDR_FLAG_REPLACE); + HTTP_ADDHDR_FLAG_REPLACE|HTTP_ADDHDR_FLAG_REQ);
HeapFree( GetProcessHeap(), 0, authorization );