From f702256d5514e54138279fd4637353e328262817 Mon Sep 17 00:00:00 2001 From: Kelvin Lee Date: Sun, 27 Oct 2019 18:22:34 +1100 Subject: [PATCH] Fix undefined array OPENSSL_ia32cap_P. CLA: trivial Reviewed-by: Matt Caswell Reviewed-by: Patrick Steuer (Merged from https://github.com/openssl/openssl/pull/10274) --- crypto/evp/e_rc4_hmac_md5.c | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/evp/e_rc4_hmac_md5.c b/crypto/evp/e_rc4_hmac_md5.c index fc519d9042..f0168219f1 100644 --- a/crypto/evp/e_rc4_hmac_md5.c +++ b/crypto/evp/e_rc4_hmac_md5.c @@ -7,6 +7,7 @@ * https://www.openssl.org/source/license.html */ +#include #include #include -- 2.25.1