summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2023-10-11 13:22:11 +0000
committertb <>2023-10-11 13:22:11 +0000
commitf8fbfc3127564e2e5965c70c0f87e0c2e50b017d (patch)
tree7333f90baf5842a22014e84749f3a3d5598887f0 /src/lib
parentcfcc87f837c8ab39b6f7678f8c6e4d028cd3c356 (diff)
downloadopenbsd-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.c8
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
64static const ASN1_TEMPLATE X509_ALGOR_seq_tt[] = { 67static 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
106X509_ALGOR * 108X509_ALGOR *
107d2i_X509_ALGOR(X509_ALGOR **a, const unsigned char **in, long len) 109d2i_X509_ALGOR(X509_ALGOR **a, const unsigned char **in, long len)
108{ 110{