Merge pull request #623 from ricnewton/master

Fix compile error on windows.
This commit is contained in:
Ian Barber 2013-08-08 11:42:53 -07:00
commit eccfede10d

View File

@ -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