From a52c54657218eacf45d27b8f308070e53a12faec Mon Sep 17 00:00:00 2001 From: Randall Meyer Date: Wed, 8 Jul 2020 15:16:07 -0700 Subject: [PATCH] Fixes use of TS_USE_TLS_OCSP --- iocore/net/SSLUtils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iocore/net/SSLUtils.cc b/iocore/net/SSLUtils.cc index 8458412bab3..2787f3c16f7 100644 --- a/iocore/net/SSLUtils.cc +++ b/iocore/net/SSLUtils.cc @@ -2080,7 +2080,7 @@ ssl_store_ssl_context(const SSLConfigParams *params, SSLCertLookup *lookup, cons } #endif -#ifdef TS_USE_TLS_OCSP +#if TS_USE_TLS_OCSP if (SSLConfigParams::ssl_ocsp_enabled) { Debug("ssl", "SSL OCSP Stapling is enabled"); SSL_CTX_set_tlsext_status_cb(ctx, ssl_callback_ocsp_stapling);