From ddf25f6b28c944702792b9555d47cdeb8217fece Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 30 May 2016 08:14:13 +0200 Subject: [PATCH] ssh: fix version number check typo --- lib/ssh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ssh.c b/lib/ssh.c index 907f646e8..d5a1a2a8c 100644 --- a/lib/ssh.c +++ b/lib/ssh.c @@ -102,7 +102,7 @@ have their definition hidden well */ #endif -#if LIBSSH2_VERSION_NUM >= x010206 +#if LIBSSH2_VERSION_NUM >= 0x010206 /* libssh2_sftp_statvfs and friends were added in 1.2.6 */ #define HAS_STATVFS_SUPPORT 1 #endif