Skip to content

Commit

Permalink
fixed tags repo
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.kvirc.de/svn/tags/kvirc/3.4.0@2226 17fca916-40b9-46aa-a4ea-0a15b648b75c
  • Loading branch information
HelLViS69 committed Aug 11, 2008
1 parent 6faa658 commit 4b1b2ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kvilib/net/kvi_socket.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,15 +183,15 @@ inline bool kvi_socket_recoverableConnectError(int err)
return ((err == WSAEINPROGRESS) || (err == WSAEWOULDBLOCK));
#else
return (err == EINPROGRESS);
#endif
#endif
};

inline bool kvi_socket_recoverableError(int err)
{
#ifdef COMPILE_ON_WINDOWS
return ((err == WSAEWOULDBLOCK) || (err == EINTR) || (err == EAGAIN));
#else
return ((err == EINTR) || (err == EAGAIN));
return ((err == EINTR) || (err = EAGAIN));
#endif
}

Expand Down

0 comments on commit 4b1b2ec

Please sign in to comment.