summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/_httpoprequest.cpp
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2015-06-24 10:10:22 -0700
committerRider Linden <rider@lindenlab.com>2015-06-24 10:10:22 -0700
commit97033975510d0514821f943287d91708eefa9c92 (patch)
tree4a9830d4ddffb452786d25703ee592358827bb14 /indra/llcorehttp/_httpoprequest.cpp
parentec1368becf02466cf6b44d50938c09d76b7ae712 (diff)
MAINT-5295 Remove POSTFIELDS from PUT operation.
Diffstat (limited to 'indra/llcorehttp/_httpoprequest.cpp')
-rwxr-xr-xindra/llcorehttp/_httpoprequest.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/indra/llcorehttp/_httpoprequest.cpp b/indra/llcorehttp/_httpoprequest.cpp
index 503c04dfa7..799587ff22 100755
--- a/indra/llcorehttp/_httpoprequest.cpp
+++ b/indra/llcorehttp/_httpoprequest.cpp
@@ -635,8 +635,6 @@ HttpStatus HttpOpRequest::prepareRequest(HttpService * service)
}
code = curl_easy_setopt(mCurlHandle, CURLOPT_INFILESIZE, data_size);
check_curl_easy_code(code, CURLOPT_INFILESIZE);
- code = curl_easy_setopt(mCurlHandle, CURLOPT_POSTFIELDS, (void *) NULL);
- check_curl_easy_code(code, CURLOPT_POSTFIELDS);
mCurlHeaders = curl_slist_append(mCurlHeaders, "Expect:");
}
break;