Commit eccfede1 authored by Ian Barber's avatar Ian Barber

Merge pull request #623 from ricnewton/master

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