Some housekeeping in x_algor
authortb <tb@openbsd.org>
Wed, 11 Oct 2023 13:22:11 +0000 (13:22 +0000)
committertb <tb@openbsd.org>
Wed, 11 Oct 2023 13:22:11 +0000 (13:22 +0000)
Fix includes and zap an empty line.

ok jsing

lib/libcrypto/asn1/x_algor.c

index 74d1235..0a80b86 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: x_algor.c,v 1.30 2023/10/11 13:20:18 tb Exp $ */
+/* $OpenBSD: x_algor.c,v 1.31 2023/10/11 13:22:11 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 2000.
  */
  */
 
 #include <stddef.h>
-#include <openssl/x509.h>
+
 #include <openssl/asn1.h>
 #include <openssl/asn1t.h>
+#include <openssl/x509.h>
+
+#include "x509_local.h"
 
 static const ASN1_TEMPLATE X509_ALGOR_seq_tt[] = {
        {
@@ -102,7 +105,6 @@ const ASN1_ITEM X509_ALGORS_it = {
        .sname = "X509_ALGORS",
 };
 
-
 X509_ALGOR *
 d2i_X509_ALGOR(X509_ALGOR **a, const unsigned char **in, long len)
 {