From 5fee8f76b529e38ec0ba6e7e81e26be3e3e85548 Mon Sep 17 00:00:00 2001 From: Alessandro Ghedini Date: Wed, 11 Oct 2017 15:43:50 -0700 Subject: [PATCH] SSL: include . This header carries the definition of HMAC_Init_ex(). In OpenSSL this header is included by , but it's not so in BoringSSL. It's probably a good idea to explicitly include this header anyway, regardless of whether it's included by other headers or not. --- src/event/ngx_event_openssl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/event/ngx_event_openssl.h b/src/event/ngx_event_openssl.h index b9a3a965c..623d851dc 100644 --- a/src/event/ngx_event_openssl.h +++ b/src/event/ngx_event_openssl.h @@ -22,6 +22,7 @@ #include #endif #include +#include #ifndef OPENSSL_NO_OCSP #include #endif