Commit 10a2e6c2 authored by Pieter Hintjens's avatar Pieter Hintjens

Merge pull request #1145 from pijyoi/master

use enum retired_fd instead of -1
parents ac99d50a 6bcced75
......@@ -87,7 +87,7 @@ void zmq::socks_connecter_t::process_term (int linger_)
case sending_request:
case waiting_for_response:
rm_fd (handle);
if (s != -1)
if (s != retired_fd)
close ();
break;
}
......@@ -227,7 +227,7 @@ void zmq::socks_connecter_t::initiate_connect ()
}
// Handle any other error condition by eventual reconnect.
else {
if (s != -1)
if (s != retired_fd)
close ();
start_timer ();
}
......
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