diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-05-07 09:50:49 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-05-07 09:50:49 +0000 |
commit | d67ea8c7ad76380c9c757072d402f62513985a05 (patch) | |
tree | 2e5f4d571ed6304b8f74f675294676909d872f41 /lib | |
parent | 535046430a6600cd721b123420b73a59caa83b4f (diff) |
count the formdata size using a 64bit size if avaialble
Diffstat (limited to 'lib')
-rw-r--r-- | lib/formdata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/formdata.c b/lib/formdata.c index 7ad8a1fa3..160f51fbd 100644 --- a/lib/formdata.c +++ b/lib/formdata.c @@ -875,7 +875,7 @@ CURLcode Curl_getFormData(struct FormData **finalform, struct curl_httppost *file; CURLcode result = CURLE_OK; - size_t size =0; + curl_off_t size =0; char *boundary; char *fileboundary=NULL; struct curl_slist* curList; |