aboutsummaryrefslogtreecommitdiff
path: root/include/libssh
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cynapses.org>2010-06-17 11:16:24 +0200
committerAndreas Schneider <asn@cynapses.org>2010-06-17 11:16:24 +0200
commitc30a25e64c8318ed77e30a31fda0d9157caeafaf (patch)
treed6ebece90d75da2226d45854fd56fe0b4f37ea82 /include/libssh
parentb9a9f54c452aeb9083398a956bd590c37661f489 (diff)
downloadlibssh-c30a25e64c8318ed77e30a31fda0d9157caeafaf.tar.gz
libssh-c30a25e64c8318ed77e30a31fda0d9157caeafaf.tar.xz
libssh-c30a25e64c8318ed77e30a31fda0d9157caeafaf.zip
poll: Fixed a malfunction with wrong max fd value check.
Diffstat (limited to 'include/libssh')
-rw-r--r--include/libssh/libssh.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index 4100f03f..cf1c9d67 100644
--- a/include/libssh/libssh.h
+++ b/include/libssh/libssh.h
@@ -120,10 +120,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 {