From 686923b19824546f5c76a012e41e1fc7141ae712 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 5 Nov 2019 17:38:24 +0100 Subject: [PATCH] include/openssl/asn1.h: Remove version dependent inclusion of It's unclear if this dependency was because ASN1 functions that use BIGNUM didn't exist before 1.1.0, or if it was a mistaken attempt at deprecation. Since there exist ASN1 functions using BIGNUM now, it seems pointless to keep that check, and unnecessarily including should be harmless either way. Reviewed-by: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/10364) --- include/openssl/asn1.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/openssl/asn1.h b/include/openssl/asn1.h index 507731a4fc..1aa4b8300c 100644 --- a/include/openssl/asn1.h +++ b/include/openssl/asn1.h @@ -25,9 +25,7 @@ # include # include -# if !OPENSSL_API_1_1_0 -# include -# endif +# include # ifdef OPENSSL_BUILD_SHLIBCRYPTO # undef OPENSSL_EXTERN -- 2.34.1