From e5cd0cc402c32e98a5180e66d6635da87bc55262 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 22 Jan 2004 11:54:00 +0000 Subject: use the proper type for formposts, not the deprecated one --- lib/url.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/url.c') 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; -- cgit v1.2.3