1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

lib1522: fix curl_easy_setopt argument type

CURLOPT_POSTFIELDSIZE is a long option.
This commit is contained in:
Marcel Raad 2018-08-24 21:06:26 +02:00
parent edfaf5a25b
commit 20168b948a
No known key found for this signature in database
GPG Key ID: 07ADACB610D796DA

View File

@ -54,7 +54,7 @@ int test(char *URL)
curl_easy_setopt(pCurl, CURLOPT_SOCKOPTFUNCTION, sockopt_callback);
curl_easy_setopt(pCurl, CURLOPT_URL, URL);
curl_easy_setopt(pCurl, CURLOPT_POSTFIELDS, g_Data);
curl_easy_setopt(pCurl, CURLOPT_POSTFIELDSIZE, sizeof(g_Data));
curl_easy_setopt(pCurl, CURLOPT_POSTFIELDSIZE, (long)sizeof(g_Data));
/* Remove "Expect: 100-continue" */
pHeaderList = curl_slist_append(pHeaderList, "Expect:");