diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tcp_connecter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tcp_connecter.cpp b/src/tcp_connecter.cpp index 17c0257..6102972 100644 --- a/src/tcp_connecter.cpp +++ b/src/tcp_connecter.cpp @@ -291,8 +291,8 @@ zmq::fd_t zmq::tcp_connecter_t::connect () err = errno; if (err != 0) { - // Assert that the error was caused by the networking problems - // rather than 0MQ bug. + // Assert that the error was caused by 0MQ bug. + // Networking problems are OK. No need to assert. zmq_assert (err == ECONNREFUSED || err == ETIMEDOUT); errno = err; |