summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-08-16 16:19:43 +0200
committerDaniel Stenberg <daniel@haxx.se>2019-08-17 16:57:56 +0200
commit1a7634e484f1f1b46cada618ac3df04a9273571f (patch)
treee34f727e12988cd59f34c80b86d63f37ff119695
parentd6dea75af7c00e396cffa2e74350352703312180 (diff)
downloadcurl-1a7634e484f1f1b46cada618ac3df04a9273571f.tar.gz
base64: check for SSH, not specific SSH backends
-rw-r--r--lib/base64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/base64.c b/lib/base64.c
index fb081a6bb..643cef625 100644
--- a/lib/base64.c
+++ b/lib/base64.c
@@ -24,8 +24,8 @@
#include "curl_setup.h"
-#if !defined(CURL_DISABLE_HTTP_AUTH) || defined(USE_LIBSSH2) || \
- defined(USE_LIBSSH) || !defined(CURL_DISABLE_LDAP) || \
+#if !defined(CURL_DISABLE_HTTP_AUTH) || defined(USE_SSH) || \
+ !defined(CURL_DISABLE_LDAP) || \
!defined(CURL_DISABLE_DOH) || defined(USE_SSL)
#include "urldata.h" /* for the Curl_easy definition */