Commit 240fc33f authored by Martin Sustrik's avatar Martin Sustrik

minor comment clarification

parent 784e73a7
...@@ -291,8 +291,8 @@ zmq::fd_t zmq::tcp_connecter_t::connect () ...@@ -291,8 +291,8 @@ zmq::fd_t zmq::tcp_connecter_t::connect ()
err = errno; err = errno;
if (err != 0) { if (err != 0) {
// Assert that the error was caused by the networking problems // Assert that the error was caused by 0MQ bug.
// rather than 0MQ bug. // Networking problems are OK. No need to assert.
zmq_assert (err == ECONNREFUSED || err == ETIMEDOUT); zmq_assert (err == ECONNREFUSED || err == ETIMEDOUT);
errno = err; errno = err;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment