From: Juergen Christ Date: Mon, 22 Mar 2021 09:04:26 +0000 (+0100) Subject: Fix compilation under -Werror X-Git-Tag: openssl-3.0.0-alpha14~153 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c08138e500ed27c6aa3db98194bd04c400213db3;p=thirdparty%2Fopenssl.git Fix compilation under -Werror With strict warnings and warnings as error, openssl currently does not compile due to a missing include. Signed-off-by: Juergen Christ Reviewed-by: Tomas Mraz Reviewed-by: Patrick Steuer Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/14640) --- diff --git a/crypto/ec/ecx_meth.c b/crypto/ec/ecx_meth.c index d68189036be..00896f4186f 100644 --- a/crypto/ec/ecx_meth.c +++ b/crypto/ec/ecx_meth.c @@ -18,6 +18,7 @@ #include #include #include +#include #include "internal/cryptlib.h" #include "internal/provider.h" #include "crypto/asn1.h"