(svn r15925) -Codechange: remove _network_server_bind_ip as it's pretty AF dependant.

This commit is contained in:
rubidium
2009-04-03 10:29:56 +00:00
parent dccfba6e20
commit 47602d7b60
4 changed files with 8 additions and 10 deletions

View File

@@ -124,6 +124,7 @@ static SOCKET ConnectLoopProc(addrinfo *runp)
if (connect(sock, runp->ai_addr, runp->ai_addrlen) != 0) {
DEBUG(net, 1, "Could not connect socket: %s", strerror(errno));
closesocket(sock);
return INVALID_SOCKET;
}