]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
count the formdata size using a 64bit size if avaialble
authorDaniel Stenberg <daniel@haxx.se>
Fri, 7 May 2004 09:50:49 +0000 (09:50 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 7 May 2004 09:50:49 +0000 (09:50 +0000)
lib/formdata.c

index 7ad8a1fa380e500e0c798063bfe8586b72a514ac..160f51fbd3efd3df36bef1982f4f1c9725eef0a1 100644 (file)
@@ -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;