Changeset 74045 in vbox for trunk/src/VBox
- Timestamp:
- Sep 3, 2018 1:49:12 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/http-curl.cpp
r74019 r74045 3294 3294 RTHTTP_VALID_RETURN(pThis); 3295 3295 3296 /* 3297 * XXX: Do this here for now as a stop-gap measure as 3298 * RTHttpReset() resets this (and proxy settings). 3299 */ 3300 if (pThis->pszCaFile) 3301 { 3302 rcCurl = curl_easy_setopt(pThis->pCurl, CURLOPT_CAINFO, pThis->pszCaFile); 3303 if (CURL_FAILURE(rcCurl)) 3304 return VERR_HTTP_CURL_ERROR; 3305 } 3306 3296 3307 rcCurl = curl_easy_perform(pThis->pCurl); 3297 3308 if (CURL_FAILURE(rcCurl))
Note:
See TracChangeset
for help on using the changeset viewer.