aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/httpput.c
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/httpput.c')
-rw-r--r--docs/examples/httpput.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/examples/httpput.c b/docs/examples/httpput.c
index 48c9f70ec..3b3fac136 100644
--- a/docs/examples/httpput.c
+++ b/docs/examples/httpput.c
@@ -85,9 +85,8 @@ int main(int argc, char **argv)
/* now specify which file to upload */
curl_easy_setopt(curl, CURLOPT_READDATA, hd_src);
- /* and give the size of the upload, make sure that we don't accidentally
- pass a larger variable type than "long". */
- curl_easy_setopt(curl, CURLOPT_INFILESIZE, (long) file_info.st_size);
+ /* and give the size of the upload */
+ curl_easy_setopt(curl, CURLOPT_INFILESIZE_LARGE, file_info.st_size);
/* Now run off and do what you've been told! */
res = curl_easy_perform(curl);