aboutsummaryrefslogtreecommitdiff
path: root/lib/hostip6.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-06-24 14:39:52 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-06-24 14:39:52 +0000
commit785bad388b31ab548d1f9d4f5a71c76f48cd6d6f (patch)
tree3958615153431f891f599f1ac2a8d69f89bbb7d6 /lib/hostip6.c
parentcf10df6c6805c8a4253b83a25997a7a41950f381 (diff)
Gisle cleaned up remaining host resolve re-org issues
Diffstat (limited to 'lib/hostip6.c')
-rw-r--r--lib/hostip6.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/hostip6.c b/lib/hostip6.c
index 55e273623..7b0091d4c 100644
--- a/lib/hostip6.c
+++ b/lib/hostip6.c
@@ -111,8 +111,9 @@ void Curl_freeaddrinfo(Curl_addrinfo *p)
* address. But this is an ipv6 build and then we don't copy the address, we
* just return the same pointer!
*/
-Curl_addrinfo *Curl_addrinfo_copy(Curl_addrinfo *source)
+Curl_addrinfo *Curl_addrinfo_copy(void *source, int port)
{
+ (void) port;
return source;
}
#endif