diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-05-05 23:42:29 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-05-06 10:14:17 +0200 |
commit | d37b0936d1ab9319d7b684eb7d9fc447174429bc (patch) | |
tree | 0acdf8e6d74b623cc7a230cf0e1a673d689b56ca /lib/curl_path.c | |
parent | c23b8e827c3d348972db4d0e1a59492f466dca34 (diff) | |
download | curl-d37b0936d1ab9319d7b684eb7d9fc447174429bc.tar.gz |
ssh: define USE_SSH if SSH is enabled (any backend)
Closes #3846
Diffstat (limited to 'lib/curl_path.c')
-rw-r--r-- | lib/curl_path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/curl_path.c b/lib/curl_path.c index ad386e743..85dddcef1 100644 --- a/lib/curl_path.c +++ b/lib/curl_path.c @@ -22,7 +22,7 @@ #include "curl_setup.h" -#if defined(USE_LIBSSH2) || defined(USE_LIBSSH) +#if defined(USE_SSH) #include <curl/curl.h> #include "curl_memory.h" |