Changeset 68968 in vbox
- Timestamp:
- Oct 4, 2017 7:59:44 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/http-curl.cpp
r63451 r68968 1713 1713 { 1714 1714 DWORD dwErr = GetLastError(); 1715 if (dwErr == ERROR_WINHTTP_AUTODETECTION_FAILED) 1715 if ( dwErr == ERROR_WINHTTP_AUTODETECTION_FAILED 1716 || ( dwErr == ERROR_WINHTTP_UNRECOGNIZED_SCHEME 1717 && ( RTStrNICmp(pszUrl, RT_STR_TUPLE("https://")) == 0 1718 || RTStrNICmp(pszUrl, RT_STR_TUPLE("http://")) == 0) ) ) 1716 1719 rcRet = rtHttpUpdateAutomaticProxyDisable(pThis); 1717 1720 else 1718 AssertMsgFailed(("g_pfnWinHttpGetProxyForUrl -> %u\n", dwErr));1721 AssertMsgFailed(("g_pfnWinHttpGetProxyForUrl(%s) -> %u\n", pszUrl, dwErr)); 1719 1722 } 1720 1723 RTUtf16Free(pwszUrl);
Note:
See TracChangeset
for help on using the changeset viewer.