diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-10-11 13:22:12 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-10-11 13:22:12 +0000 |
commit | 130a52b79396a43e7e0c51ecddce8682ea582bec (patch) | |
tree | db685b8b3579437e6b53428b008a03490907053a /lib | |
parent | 52364e383f7be159843defabd4c89f64e35ccdc7 (diff) |
Some housekeeping in x_algor
Fix includes and zap an empty line.
ok jsing
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/asn1/x_algor.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/libcrypto/asn1/x_algor.c b/lib/libcrypto/asn1/x_algor.c index 74d123535b0..0a80b863dea 100644 --- a/lib/libcrypto/asn1/x_algor.c +++ b/lib/libcrypto/asn1/x_algor.c @@ -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. */ @@ -57,9 +57,12 @@ */ #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) { |