diff options
| author | Andreas Schneider <asn@cynapses.org> | 2010-06-17 11:16:24 +0200 |
|---|---|---|
| committer | Andreas Schneider <asn@cynapses.org> | 2010-06-17 11:23:50 +0200 |
| commit | a375ebe29b7947a42d845f6f84c9129c0a8ee0aa (patch) | |
| tree | c1028a8b996eb7e2481fea053c5a5fa184b6fb5c | |
| parent | b2f49a6a93db0b6039c609a4e60e3fbc70b77260 (diff) | |
poll: Fixed a malfunction with wrong max fd value check.
| -rw-r--r-- | include/libssh/libssh.h | 8 | ||||
| -rw-r--r-- | libssh/poll.c | 4 |
2 files changed, 8 insertions, 4 deletions
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 { diff --git a/libssh/poll.c b/libssh/poll.c index b28d2c4f..5ce14b2b 100644 --- a/libssh/poll.c +++ b/libssh/poll.c @@ -110,7 +110,7 @@ static int bsd_poll(ssh_pollfd_t *fds, nfds_t nfds, int timeout) { FD_ZERO (&exceptfds); /* compute fd_sets and find largest descriptor */ - for (max_fd = -1, i = 0; i < nfds; i++) { + for (max_fd = 0, i = 0; i < nfds; i++) { if (fds[i].fd < 0) { continue; } @@ -132,7 +132,7 @@ static int bsd_poll(ssh_pollfd_t *fds, nfds_t nfds, int timeout) { } } - if (max_fd == -1) { + if (max_fd == (socket_t) -1) { errno = EINVAL; return -1; } |
