From: Tomas Mraz Date: Tue, 23 Feb 2021 15:51:43 +0000 (+0100) Subject: Remove inclusion of unnecessary header files X-Git-Tag: openssl-3.0.0-alpha13~194 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=53cefef62ba7b1262374874aa8ce0aa34419d8ff;p=thirdparty%2Fopenssl.git Remove inclusion of unnecessary header files Reviewed-by: Paul Dale Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/14290) --- diff --git a/crypto/dsa/dsa_lib.c b/crypto/dsa/dsa_lib.c index fd562035394..7e5be3208d7 100644 --- a/crypto/dsa/dsa_lib.c +++ b/crypto/dsa/dsa_lib.c @@ -13,15 +13,13 @@ */ #include "internal/deprecated.h" -#include -#include "internal/cryptlib.h" -#include "internal/refcount.h" #include -#include #include -#include "dsa_local.h" +#include "internal/cryptlib.h" +#include "internal/refcount.h" #include "crypto/dsa.h" #include "crypto/dh.h" /* required by DSA_dup_DH() */ +#include "dsa_local.h" static DSA *dsa_new_intern(ENGINE *engine, OSSL_LIB_CTX *libctx); diff --git a/crypto/evp/dh_ctrl.c b/crypto/evp/dh_ctrl.c index 7eb0a8ee485..57cd88b41b9 100644 --- a/crypto/evp/dh_ctrl.c +++ b/crypto/evp/dh_ctrl.c @@ -9,8 +9,6 @@ #include "internal/deprecated.h" -#include -#include #include #include #include