From: Gisle Vanem Date: Sat, 1 Nov 2008 15:16:47 +0000 (+0000) Subject: init_resolve_thread() needs 'hints' on the native form. X-Git-Tag: curl-7_19_1~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5f085789b92be623e7a73d1172486a64daf42895;p=thirdparty%2Fcurl.git init_resolve_thread() needs 'hints' on the native form. --- diff --git a/lib/hostthre.c b/lib/hostthre.c index fcc0bb32c5..242c486995 100644 --- a/lib/hostthre.c +++ b/lib/hostthre.c @@ -92,7 +92,7 @@ /* This function is used to init a threaded resolve */ static bool init_resolve_thread(struct connectdata *conn, const char *hostname, int port, - const Curl_addrinfo *hints); + const struct addrinfo *hints); #ifdef CURLRES_IPV4 #define THREAD_FUNC gethostbyname_thread @@ -396,7 +396,7 @@ void Curl_destroy_thread_data (struct Curl_async *async) */ static bool init_resolve_thread (struct connectdata *conn, const char *hostname, int port, - const Curl_addrinfo *hints) + const struct addrinfo *hints) { struct thread_data *td = calloc(sizeof(*td), 1); HANDLE thread_and_event[2] = {0};