Commit a268a804 authored by Steve Holme's avatar Steve Holme
Browse files

openssl: Fixed compilation errors when OpenSSL built with 'no-tlsext'

Fixed the build of openssl.c when OpenSSL is built without the necessary
TLS extensions for OCSP stapling.

Reported-by: John E. Malmberg
parent 56913254
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1323,7 +1323,7 @@ static CURLcode verifyhost(struct connectdata *conn, X509 *server_cert)
  return result;
}

#ifndef HAVE_BORINGSSL
#if !defined(HAVE_BORINGSSL) && !defined(OPENSSL_NO_TLSEXT)
static CURLcode verifystatus(struct connectdata *conn,
                             struct ssl_connect_data *connssl)
{
@@ -2060,7 +2060,7 @@ static CURLcode ossl_connect_step1(struct connectdata *conn, int sockindex)
    return CURLE_OUT_OF_MEMORY;
  }

#ifndef HAVE_BORINGSSL
#if !defined(HAVE_BORINGSSL) && !defined(OPENSSL_NO_TLSEXT)
  if(data->set.ssl.verifystatus)
    SSL_set_tlsext_status_type(connssl->handle, TLSEXT_STATUSTYPE_ocsp);
#endif
@@ -2748,7 +2748,7 @@ static CURLcode servercert(struct connectdata *conn,
      infof(data, "\t SSL certificate verify ok.\n");
  }

#ifndef HAVE_BORINGSSL
#if !defined(HAVE_BORINGSSL) && !defined(OPENSSL_NO_TLSEXT)
  if(data->set.ssl.verifystatus) {
    result = verifystatus(conn, connssl);
    if(result) {