6679422: networkStream::connect() in ostream.cpp is not 64-bit clean

Reviewed-by: jmasa, xlu
This commit is contained in:
John Coomes 2008-03-28 23:35:42 -07:00
parent 5ac01e984f
commit b63d2cdd27

@ -829,7 +829,7 @@ bool networkStream::connect(const char *ip, short port) {
server.sin_port = htons(port);
server.sin_addr.s_addr = inet_addr(ip);
if (server.sin_addr.s_addr == (unsigned long)-1) {
if (server.sin_addr.s_addr == (uint32_t)-1) {
#ifdef _WINDOWS
struct hostent* host = hpi::get_host_by_name((char*)ip);
#else