From 886391d145854fa420847d60cb080f29dd3a5af2 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Mon, 2 Feb 2004 16:00:31 +0000
Subject: [PATCH] adjusted to the modified ares_strerror() function

NOTE that this breaks ares-compatibility, we have now officially taken the
turn into the c-ares path. We will now officially depend on c-ares for asynch
name resolves.
---
 lib/hostip.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/hostip.c b/lib/hostip.c
index 015825c92..6c89bd4ae 100644
--- a/lib/hostip.c
+++ b/lib/hostip.c
@@ -539,9 +539,8 @@ CURLcode Curl_wait_for_resolv(struct connectdata *conn,
       rc = CURLE_OPERATION_TIMEDOUT;
     }
     else if(conn->async.done) {
-      char **dummy=NULL; /* stupid never-used ares-thing */
       failf(data, "Could not resolve host: %s (%s)", conn->name,
-            ares_strerror(conn->async.status, dummy));
+            ares_strerror(conn->async.status));
       rc = CURLE_COULDNT_RESOLVE_HOST;
     }
     else
-- 
2.40.0