diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-04-07 16:41:07 +0000 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-04-07 16:41:07 +0000 |
commit | c7df61a3c32d66b31f047602da9ce982164c6757 (patch) | |
tree | 9d62dd650735837b2c4525d5df834ba3bec56534 | |
parent | 8ef78e7e7db53c190071034cc4c8e1bbbe70c619 (diff) | |
download | infinitytier-c7df61a3c32d66b31f047602da9ce982164c6757.tar.gz infinitytier-c7df61a3c32d66b31f047602da9ce982164c6757.zip |
dev branch now works again on Linux
-rw-r--r-- | service/OneService.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/OneService.cpp b/service/OneService.cpp index 3a1a1628..b29cb3f6 100644 --- a/service/OneService.cpp +++ b/service/OneService.cpp @@ -590,7 +590,7 @@ public: // We must bind one of IPv4 or IPv6 -- support either failing to support hosts that // have only IPv4 or only IPv6 stacks. - if (((_v4TcpControlSocket)||(_v6TcpControlSocket))&&(_trialBind(port))) { + if ((_v4TcpControlSocket)||(_v6TcpControlSocket)) { _ports[0] = port; break; } else { |