From c036f6ae2da0395a633dc1d11b68879fd6795e19 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Sat, 29 Nov 2008 16:39:56 +0000 Subject: Adjust some libssh2 preprocessor symbol definition checks --- lib/ssh.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'lib/ssh.c') diff --git a/lib/ssh.c b/lib/ssh.c index 1f1650e20..f826a4fa4 100644 --- a/lib/ssh.c +++ b/lib/ssh.c @@ -36,17 +36,6 @@ #include #include -#if !defined(LIBSSH2_VERSION_NUM) || (LIBSSH2_VERSION_NUM < 0x001000) -#error "this requires libssh2 0.16 or later" -#endif - -#if !defined(HAVE_LIBSSH2_SESSION_BLOCK_DIRECTION) && \ - (LIBSSH2_VERSION_NUM >= 0x001300) -/* this is just a check for non-configure based systems to get this properly - setup if libssh2 0.19+ is used */ -#define HAVE_LIBSSH2_SESSION_BLOCK_DIRECTION 1 -#endif - #ifdef HAVE_UNISTD_H #include #endif @@ -2070,7 +2059,7 @@ static CURLcode ssh_easy_statemach(struct connectdata *conn) bool block; result = ssh_statemach_act(conn, &block); -#ifdef HAVE_LIBSSH2_SESSION_BLOCK_DIRECTION +#ifdef HAVE_LIBSSH2_SESSION_BLOCK_DIRECTIONS if((CURLE_OK == result) && block) { int dir = libssh2_session_block_directions(sshc->ssh_session); curl_socket_t sock = conn->sock[FIRSTSOCKET]; -- cgit v1.2.3