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-16 16:27:49 +0200
commitbbd8584960a6a9213565789e2886c5f62c5a0358 (patch)
tree9f86712dc2e12e06d59608f4ffc79f22d10c8763
parente69547a602ffe8791c3fe21b0ae97d265ddff728 (diff)
downloadcurl-bbd8584960a6a9213565789e2886c5f62c5a0358.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 */