(svn r16265) -Fix (r16238): wrong format string for debug output

This commit is contained in:
smatz
2009-05-10 13:23:23 +00:00
parent cb66ca57c1
commit e5529d8995
2 changed files with 3 additions and 3 deletions

View File

@@ -308,7 +308,7 @@ static SOCKET ListenLoopProc(addrinfo *runp)
}
if (runp->ai_socktype != SOCK_DGRAM && listen(sock, 1) != 0) {
DEBUG(net, 1, "[%s] could not listen at % port %s: %s", type, family, address, strerror(errno));
DEBUG(net, 1, "[%s] could not listen at %s port %s: %s", type, family, address, strerror(errno));
closesocket(sock);
return INVALID_SOCKET;
}