Changeset 58201 in vbox
- Timestamp:
- Oct 12, 2015 3:36:52 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103315
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/http-curl.cpp
r58199 r58201 2330 2330 if (!CURL_FAILURE(rcCurl)) 2331 2331 rcCurl = curl_easy_setopt(pThis->pCurl, CURLOPT_WRITEDATA, (void *)pThis); 2332 if ( fNoBody 2333 && !CURL_FAILURE(rcCurl)) 2334 rcCurl = curl_easy_setopt(pThis->pCurl, CURLOPT_NOBODY, 1L); 2332 if (!CURL_FAILURE(rcCurl)) 2333 rcCurl = curl_easy_setopt(pThis->pCurl, CURLOPT_NOBODY, fNoBody : 1L : 0L); 2335 2334 if (!CURL_FAILURE(rcCurl)) 2336 2335 {
Note:
See TracChangeset
for help on using the changeset viewer.