Changeset 86648 in vbox for trunk/src/VBox/Runtime/generic
- Timestamp:
- Oct 20, 2020 1:59:45 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 141024
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/http-curl.cpp
r86448 r86648 404 404 405 405 *phHttp = (RTHTTP)pThis; 406 406 #if 0 // XXX: uwe 407 { 408 const char *verbose = getenv("CURL_VERBOSE"); 409 if (verbose != NULL && *verbose != '0') 410 curl_easy_setopt(pThis->pCurl, CURLOPT_VERBOSE, 1L); 411 } 412 #endif 407 413 return VINF_SUCCESS; 408 414 } … … 440 446 pThis->rcOutput = VINF_SUCCESS; 441 447 442 /* Tell the proxy configuration code to reapply settings even if they 443 didn't change as cURL has forgotten them: */ 444 pThis->fReapplyProxyInfo = true; 448 #if 0 // XXX: uwe 449 { 450 const char *verbose = getenv("CURL_VERBOSE"); 451 if (verbose != NULL && *verbose != '0') 452 curl_easy_setopt(pThis->pCurl, CURLOPT_VERBOSE, 1L); 453 } 454 #endif 445 455 446 456 return VINF_SUCCESS; … … 2636 2646 pThis->fDeleteCaFile = true; 2637 2647 pThis->pszCaFile = pszCaFile; 2648 2649 // RTPrintf("pszCaFile=\"%s\"\n", pszCaFile); // XXX: uwe 2650 2638 2651 return VINF_SUCCESS; 2639 2652 }
Note:
See TracChangeset
for help on using the changeset viewer.