]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Remove inclusion of unnecessary header files
authorTomas Mraz <tomas@openssl.org>
Tue, 23 Feb 2021 15:51:43 +0000 (16:51 +0100)
committerTomas Mraz <tomas@openssl.org>
Wed, 24 Feb 2021 16:55:20 +0000 (17:55 +0100)
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14290)

crypto/dsa/dsa_lib.c
crypto/evp/dh_ctrl.c

index fd56203539486b6d8b292754ec563d03f08ec980..7e5be3208d72c11d8d1190035c3b99e075a17fac 100644 (file)
  */
 #include "internal/deprecated.h"
 
-#include <stdio.h>
-#include "internal/cryptlib.h"
-#include "internal/refcount.h"
 #include <openssl/bn.h>
-#include <openssl/asn1.h>
 #include <openssl/engine.h>
-#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);
 
index 7eb0a8ee48575598d7b47f54070620af6ab33e8b..57cd88b41b93d05b5224b5953ad27b131555ddbc 100644 (file)
@@ -9,8 +9,6 @@
 
 #include "internal/deprecated.h"
 
-#include <stdio.h>
-#include <string.h>
 #include <openssl/core_names.h>
 #include <openssl/params.h>
 #include <openssl/err.h>