Gisle cleaned up remaining host resolve re-org issues

This commit is contained in:
Daniel Stenberg
2004-06-24 14:39:52 +00:00
parent cf10df6c68
commit 785bad388b
4 changed files with 12 additions and 11 deletions

View File

@@ -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