From: Daniel Stenberg Date: Fri, 16 Aug 2019 14:19:43 +0000 (+0200) Subject: base64: check for SSH, not specific SSH backends X-Git-Tag: curl-7_66_0~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a7634e484f1f1b46cada618ac3df04a9273571f;p=thirdparty%2Fcurl.git base64: check for SSH, not specific SSH backends --- diff --git a/lib/base64.c b/lib/base64.c index fb081a6bb8..643cef6251 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 */