diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-05-30 08:14:13 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-05-30 08:14:27 +0200 |
commit | ddf25f6b28c944702792b9555d47cdeb8217fece (patch) | |
tree | 9b2cad639541776186038ce5dd986590e4b1be63 /lib | |
parent | 694c2dce253eabd8b52a3dfbb550026de8d74f6d (diff) | |
download | curl-ddf25f6b28c944702792b9555d47cdeb8217fece.tar.gz |
ssh: fix version number check typo
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssh.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |