diff options
author | tb <> | 2023-10-11 13:22:11 +0000 |
---|---|---|
committer | tb <> | 2023-10-11 13:22:11 +0000 |
commit | f8fbfc3127564e2e5965c70c0f87e0c2e50b017d (patch) | |
tree | 7333f90baf5842a22014e84749f3a3d5598887f0 /src/lib | |
parent | cfcc87f837c8ab39b6f7678f8c6e4d028cd3c356 (diff) | |
download | openbsd-f8fbfc3127564e2e5965c70c0f87e0c2e50b017d.tar.gz openbsd-f8fbfc3127564e2e5965c70c0f87e0c2e50b017d.tar.bz2 openbsd-f8fbfc3127564e2e5965c70c0f87e0c2e50b017d.zip |
Some housekeeping in x_algor
Fix includes and zap an empty line.
ok jsing
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/asn1/x_algor.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/lib/libcrypto/asn1/x_algor.c b/src/lib/libcrypto/asn1/x_algor.c index 74d123535b..0a80b863de 100644 --- a/src/lib/libcrypto/asn1/x_algor.c +++ b/src/lib/libcrypto/asn1/x_algor.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x_algor.c,v 1.30 2023/10/11 13:20:18 tb Exp $ */ | 1 | /* $OpenBSD: x_algor.c,v 1.31 2023/10/11 13:22:11 tb Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2000. | 3 | * project 2000. |
4 | */ | 4 | */ |
@@ -57,9 +57,12 @@ | |||
57 | */ | 57 | */ |
58 | 58 | ||
59 | #include <stddef.h> | 59 | #include <stddef.h> |
60 | #include <openssl/x509.h> | 60 | |
61 | #include <openssl/asn1.h> | 61 | #include <openssl/asn1.h> |
62 | #include <openssl/asn1t.h> | 62 | #include <openssl/asn1t.h> |
63 | #include <openssl/x509.h> | ||
64 | |||
65 | #include "x509_local.h" | ||
63 | 66 | ||
64 | static const ASN1_TEMPLATE X509_ALGOR_seq_tt[] = { | 67 | static const ASN1_TEMPLATE X509_ALGOR_seq_tt[] = { |
65 | { | 68 | { |
@@ -102,7 +105,6 @@ const ASN1_ITEM X509_ALGORS_it = { | |||
102 | .sname = "X509_ALGORS", | 105 | .sname = "X509_ALGORS", |
103 | }; | 106 | }; |
104 | 107 | ||
105 | |||
106 | X509_ALGOR * | 108 | X509_ALGOR * |
107 | d2i_X509_ALGOR(X509_ALGOR **a, const unsigned char **in, long len) | 109 | d2i_X509_ALGOR(X509_ALGOR **a, const unsigned char **in, long len) |
108 | { | 110 | { |