Module: wine Branch: master Commit: 1eb86e1fca71f634b54bf105703c1247d87b39ee URL: http://source.winehq.org/git/wine.git/?a=commit;h=1eb86e1fca71f634b54bf10570...
Author: Hans Leidekker hans@codeweavers.com Date: Tue Dec 9 12:45:46 2014 +0100
winhttp: Enable automatic authentication by default in the request object.
---
dlls/winhttp/request.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winhttp/request.c b/dlls/winhttp/request.c index d497d7a..62e9c75 100644 --- a/dlls/winhttp/request.c +++ b/dlls/winhttp/request.c @@ -2932,7 +2932,7 @@ static void initialize_request( struct winhttp_request *request ) request->bytes_read = 0; request->error = ERROR_SUCCESS; request->logon_policy = WINHTTP_AUTOLOGON_SECURITY_LEVEL_MEDIUM; - request->disable_feature = WINHTTP_DISABLE_AUTHENTICATION; + request->disable_feature = 0; request->proxy.dwAccessType = WINHTTP_ACCESS_TYPE_DEFAULT_PROXY; request->proxy.lpszProxy = NULL; request->proxy.lpszProxyBypass = NULL;