Daniel Lehman : wininet: Copy and pass along proxyBypass in INTERNET_ConfigureProxy.

Alexandre Julliard julliard at winehq.org
Wed May 8 15:48:21 CDT 2013


Module: wine
Branch: master
Commit: 438be70838dabd23717a7d6b4d3cae27af1cf100
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=438be70838dabd23717a7d6b4d3cae27af1cf100

Author: Daniel Lehman <dlehman at 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




More information about the wine-cvs mailing list