aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-01-22 11:54:00 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-01-22 11:54:00 +0000
commite5cd0cc402c32e98a5180e66d6635da87bc55262 (patch)
tree33af010872d0bc0850731119881f8c33a7f6066e /lib/url.c
parent252423a725c4b00bd0670e12f9a968bf57c68bad (diff)
use the proper type for formposts, not the deprecated one
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index 4b71e070f..8533297a4 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -682,7 +682,7 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...)
/*
* Set to make us do HTTP POST
*/
- data->set.httppost = va_arg(param, struct HttpPost *);
+ data->set.httppost = va_arg(param, struct curl_httppost *);
if(data->set.httppost)
data->set.httpreq = HTTPREQ_POST_FORM;
break;