Daniel Lehman : wininet: Copy and pass along proxyBypass in INTERNET_ConfigureProxy.
Module: wine Branch: master Commit: 438be70838dabd23717a7d6b4d3cae27af1cf100 URL: http://source.winehq.org/git/wine.git/?a=commit;h=438be70838dabd23717a7d6b4d... Author: Daniel Lehman <dlehman(a)esri.com> Date: Mon May 6 10:09:27 2013 -0700 wininet: Copy and pass along proxyBypass in INTERNET_ConfigureProxy. --- dlls/wininet/internet.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/dlls/wininet/internet.c b/dlls/wininet/internet.c index f8c36f7..12e4096 100644 --- a/dlls/wininet/internet.c +++ b/dlls/wininet/internet.c @@ -697,13 +697,14 @@ static BOOL INTERNET_ConfigureProxy( appinfo_t *lpwai ) lpwai->accessType = INTERNET_OPEN_TYPE_PROXY; lpwai->proxy = heap_strdupW(proxyurl); + lpwai->proxyBypass = heap_strdupW(wpi.proxyBypass); if (UrlComponents.dwUserNameLength) { lpwai->proxyUsername = heap_strdupW(UrlComponents.lpszUserName); lpwai->proxyPassword = heap_strdupW(UrlComponents.lpszPassword); } - TRACE("http proxy = %s\n", debugstr_w(lpwai->proxy)); + TRACE("http proxy = %s bypass = %s\n", debugstr_w(lpwai->proxy), debugstr_w(lpwai->proxyBypass)); return TRUE; } else
participants (1)
-
Alexandre Julliard