From a375ebe29b7947a42d845f6f84c9129c0a8ee0aa Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 17 Jun 2010 11:16:24 +0200 Subject: poll: Fixed a malfunction with wrong max fd value check. --- include/libssh/libssh.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'include/libssh/libssh.h') diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h index 8f064f72..00f6d7a6 100644 --- a/include/libssh/libssh.h +++ b/include/libssh/libssh.h @@ -119,10 +119,14 @@ typedef struct ssh_string_struct* ssh_string; /* Socket type */ #ifdef _WIN32 -#define socket_t SOCKET -#else +#ifndef socket_t +typedef SOCKET socket_t; +#endif /* socket_t */ +#else /* _WIN32 */ +#ifndef socket_t typedef int socket_t; #endif +#endif /* _WIN32 */ /* the offsets of methods */ enum ssh_kex_types_e { -- cgit