1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-08 04:26:01 -04:00

the same #ifdef { parsing problem..

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2296 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-01-04 21:28:26 +00:00 committed by cras
parent 8996062276
commit 41e92b3062

View File

@ -212,10 +212,11 @@ GIOChannel *net_connect_ip(IPADDR *ip, int port, IPADDR *my_ip)
ret = connect(handle, &so.sa, SIZEOF_SOCKADDR(so)); ret = connect(handle, &so.sa, SIZEOF_SOCKADDR(so));
#ifndef WIN32 #ifndef WIN32
if (ret < 0 && errno != EINPROGRESS) { if (ret < 0 && errno != EINPROGRESS)
#else #else
if (ret < 0 && WSAGetLastError() != WSAEWOULDBLOCK) { if (ret < 0 && WSAGetLastError() != WSAEWOULDBLOCK)
#endif #endif
{
close(handle); close(handle);
return NULL; return NULL;
} }