blob: 4e930fe496276d126ceaf9c98160cbc40f7d323f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/ObjectSystem/socketStuff.cc.orig 2018-08-27 20:56:09 UTC
+++ src/ObjectSystem/socketStuff.cc
@@ -219,7 +219,7 @@ SocketManagerSymbol::createServerTcpSocket(FreeDagNode
sockName.sin_family = AF_INET;
sockName.sin_port = htons(port);
sockName.sin_addr.s_addr = htonl(INADDR_ANY); // HACK - what is the portable way to set this?
- if (bind(fd, reinterpret_cast<sockaddr*>(&sockName), sizeof(sockName)) == -1)
+ if (::bind(fd, reinterpret_cast<sockaddr*>(&sockName), sizeof(sockName)) == -1)
{
const char* errText = strerror(errno);
DebugAdvisory("unexpected bind() error with fd " << fd << ": " << errText);
|