aboutsummaryrefslogtreecommitdiff
path: root/lib/formdata.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-12-16 18:09:27 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-12-16 18:09:27 +0000
commit4f5a6a33b46f9c389e6cfcd822c6fc874a3a9752 (patch)
treebd4fe68cf760501e19d63ea55bec00079b4e949c /lib/formdata.c
parentec8ee4404becaa918bfaf1677088e662f939d74b (diff)
moved the lseek() and stat() magic defines to setup.h and now take advantage
of struct_stat in formdata.c as well, to support formpost uploads of large files on Windows too
Diffstat (limited to 'lib/formdata.c')
-rw-r--r--lib/formdata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/formdata.c b/lib/formdata.c
index 07e5a0ddf..4f0845c3f 100644
--- a/lib/formdata.c
+++ b/lib/formdata.c
@@ -835,7 +835,7 @@ static CURLcode AddFormData(struct FormData **formp,
/* Since this is a file to be uploaded here, add the size of the actual
file */
if(!strequal("-", newform->line)) {
- struct stat file;
+ struct_stat file;
if(!stat(newform->line, &file)) {
*size += file.st_size;
}