Daniel Lehman : wininet: Remove old FIXME about bypassing proxy.
Module: wine Branch: master Commit: d853009ef835b00dbc927d0d05402b6f67b79072 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d853009ef835b00dbc927d0d05... Author: Daniel Lehman <dlehman(a)esri.com> Date: Mon May 6 11:17:32 2013 -0700 wininet: Remove old FIXME about bypassing proxy. --- dlls/wininet/http.c | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/dlls/wininet/http.c b/dlls/wininet/http.c index 7d5175e..a0e4973 100644 --- a/dlls/wininet/http.c +++ b/dlls/wininet/http.c @@ -5753,10 +5753,6 @@ DWORD HTTP_Connect(appinfo_t *hIC, LPCWSTR lpszServerName, session->appInfo = hIC; list_add_head( &hIC->hdr.children, &session->hdr.entry ); - if(hIC->proxy && hIC->accessType == INTERNET_OPEN_TYPE_PROXY) { - if(hIC->proxyBypass) - FIXME("Proxy bypass is ignored.\n"); - } session->hostName = heap_strdupW(lpszServerName); if (lpszUserName && lpszUserName[0]) session->userName = heap_strdupW(lpszUserName);
participants (1)
-
Alexandre Julliard