From: Dan Fandrich Date: Tue, 24 Mar 2015 20:41:22 +0000 (+0100) Subject: vtls: fix compile with --disable-crypto-auth but with SSL X-Git-Tag: curl-7_42_0~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56ae66d5180f4ae0fef080dda51b677e4a90d309;p=thirdparty%2Fcurl.git vtls: fix compile with --disable-crypto-auth but with SSL This is a strange combination of options, but is allowed. --- diff --git a/lib/vtls/vtls.c b/lib/vtls/vtls.c index c551cca664..4980d674fe 100644 --- a/lib/vtls/vtls.c +++ b/lib/vtls/vtls.c @@ -827,6 +827,7 @@ CURLcode Curl_pin_peer_pubkey(const char *pinnedpubkey, return result; } +#ifndef CURL_DISABLE_CRYPTO_AUTH void Curl_ssl_md5sum(unsigned char *tmp, /* input */ size_t tmplen, unsigned char *md5sum, /* output */ @@ -844,6 +845,7 @@ void Curl_ssl_md5sum(unsigned char *tmp, /* input */ Curl_MD5_final(MD5pw, md5sum); #endif } +#endif /* * Check whether the SSL backend supports the status_request extension.