diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-01-22 11:54:00 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-01-22 11:54:00 +0000 |
commit | e5cd0cc402c32e98a5180e66d6635da87bc55262 (patch) | |
tree | 33af010872d0bc0850731119881f8c33a7f6066e /lib/formdata.h | |
parent | 252423a725c4b00bd0670e12f9a968bf57c68bad (diff) | |
download | curl-e5cd0cc402c32e98a5180e66d6635da87bc55262.tar.gz |
use the proper type for formposts, not the deprecated one
Diffstat (limited to 'lib/formdata.h')
-rw-r--r-- | lib/formdata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/formdata.h b/lib/formdata.h index 38aef434c..4da6bc6ae 100644 --- a/lib/formdata.h +++ b/lib/formdata.h @@ -59,7 +59,7 @@ int Curl_FormInit(struct Form *form, struct FormData *formdata ); CURLcode Curl_getFormData(struct FormData **, - struct HttpPost *post, + struct curl_httppost *post, int *size); /* fread() emulation */ |