diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-10-24 00:52:25 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-11-02 08:41:46 +0100 |
commit | ca5f9341ef0a941ed478bc5c7e79397b68c2a616 (patch) | |
tree | 0e53c2d2a2c023b961d0baf634259e5e901c66b9 /lib/formdata.h | |
parent | 49a991346e9c6f334d014f16944744a1dac11c64 (diff) | |
download | curl-ca5f9341ef0a941ed478bc5c7e79397b68c2a616.tar.gz |
formadd: support >2GB files on windows
Closes #425
Diffstat (limited to 'lib/formdata.h')
-rw-r--r-- | lib/formdata.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/formdata.h b/lib/formdata.h index 22f504bb3..05621e3e8 100644 --- a/lib/formdata.h +++ b/lib/formdata.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -54,7 +54,7 @@ typedef struct FormInfo { size_t namelength; char *value; bool value_alloc; - size_t contentslength; + curl_off_t contentslength; char *contenttype; bool contenttype_alloc; long flags; |