Skip to content
Snippets Groups Projects
Commit e1bb13c0 authored by Steve Holme's avatar Steve Holme
Browse files

openssl: Fixed Curl_ossl_cert_status_request() not returning FALSE

Modified the Curl_ossl_cert_status_request() function to return FALSE
when built with BoringSSL or when OpenSSL is missing the necessary TLS
extensions.
parent a268a804
No related branches found
No related tags found
No related merge requests found
......@@ -3202,6 +3202,10 @@ void Curl_ossl_md5sum(unsigned char *tmp, /* input */
bool Curl_ossl_cert_status_request(void)
{
#if !defined(HAVE_BORINGSSL) && !defined(OPENSSL_NO_TLSEXT)
return TRUE;
#else
return FALSE;
#endif
}
#endif /* USE_SSLEAY */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment