From 27c0b438976d0f964b3b6ee126d985759da06662 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 20 Jul 2006 20:04:52 +0000 Subject: David McCreedy fixed a build error when building libcurl with HTTP disabled, problem added with the curl_formget() patch. --- lib/formdata.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/formdata.c') diff --git a/lib/formdata.c b/lib/formdata.c index a42ea5390..6094e8e81 100644 --- a/lib/formdata.c +++ b/lib/formdata.c @@ -1574,10 +1574,10 @@ CURLFORMcode curl_formadd(struct curl_httppost **httppost, return CURL_FORMADD_DISABLED; } -CURLFORMCode curl_formget(struct curl_httppost *post, void *arg, - curl_formget_callback append) +int curl_formget(struct curl_httppost *form, void *arg, + curl_formget_callback append) { - (void) post; + (void) form; (void) arg; (void) append; return CURL_FORMADD_DISABLED; -- cgit v1.2.3