From 9039d19f01f2d201dd4dfeac5a81753c82c72147 Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Wed, 20 Apr 2011 15:23:57 +0200 Subject: CURL_DOES_CONVERSIONS: fixes Made it compile and work again after the code move. --- lib/non-ascii.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'lib/non-ascii.c') diff --git a/lib/non-ascii.c b/lib/non-ascii.c index 945178e53..7e6ad37bf 100644 --- a/lib/non-ascii.c +++ b/lib/non-ascii.c @@ -24,6 +24,13 @@ #ifdef CURL_DOES_CONVERSIONS +#include "non-ascii.h" +#include "formdata.h" +#include "sendf.h" +#include "urldata.h" + +#include + #ifdef HAVE_ICONV #include /* set default codesets for iconv */ @@ -37,10 +44,10 @@ #endif /* HAVE_ICONV */ /* - * Curl_convertclone() returns a malloced copy of the source string (if + * Curl_convert_clone() returns a malloced copy of the source string (if * returning CURLE_OK), with the data converted to network format. */ -CURLcode Curl_convertclone(struct SessionHandle *data, +CURLcode Curl_convert_clone(struct SessionHandle *data, const char *indata, size_t insize, char **outbuf) @@ -54,7 +61,7 @@ CURLcode Curl_convertclone(struct SessionHandle *data, memcpy(convbuf, indata, insize); result = Curl_convert_to_network(data, convbuf, insize); - if(result) {s + if(result) { free(convbuf); return result; } -- cgit v1.2.3