Commit e16a6af0 authored by Richard Newton's avatar Richard Newton

Fix compile error on windows.

parent 749c391b
...@@ -125,7 +125,7 @@ bool zmq::get_peer_ip_address (fd_t sockfd_, std::string &ip_addr_) ...@@ -125,7 +125,7 @@ bool zmq::get_peer_ip_address (fd_t sockfd_, std::string &ip_addr_)
wsa_assert (WSAGetLastError () != WSANOTINITIALISED && wsa_assert (WSAGetLastError () != WSANOTINITIALISED &&
WSAGetLastError () != WSAEFAULT && WSAGetLastError () != WSAEFAULT &&
WSAGetLastError () != WSAEINPROGRESS && WSAGetLastError () != WSAEINPROGRESS &&
WSAGetLastError () != WSAENOTSOCK) WSAGetLastError () != WSAENOTSOCK);
return false; return false;
} }
#else #else
......
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