From d821117033278c1304cd2baef0ad50fa4a2e2629 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 9 Nov 2009 20:13:27 +0100 Subject: Always use the poll-emulation on Windows. Until we we have a solution to use WSAPoll only on Vista and newer. --- libssh/poll.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libssh/poll.c b/libssh/poll.c index c8944af..4a84cbe 100644 --- a/libssh/poll.c +++ b/libssh/poll.c @@ -67,7 +67,8 @@ int ssh_poll(ssh_pollfd_t *fds, nfds_t nfds, int timeout) { #else /* HAVE_POLL */ #ifdef _WIN32 -#if defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0600) +#if 0 +/* defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0600) */ #include -- cgit