diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2021-11-01 20:53:09 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2021-11-01 20:53:09 +0000 |
commit | 4826bb143de0d29c57e632181b3770ecc6e302ba (patch) | |
tree | 572ac3adfa0b088284a27ecdf7de18447092c183 /lib/libcrypto/asn1/t_crl.c | |
parent | dfb8774a73a47b76cbd387eea5780f68c84008c6 (diff) |
Move the now internal X.509-related structs into x509_lcl.h.
Garbage collect the now unused LIBRESSL_CRYPTO_INTERNAL and
LIBRESSL_OPAQUE_X509. Include "x509_lcl.h" where needed and
fix a couple of unnecessary reacharounds.
ok jsing
Diffstat (limited to 'lib/libcrypto/asn1/t_crl.c')
-rw-r--r-- | lib/libcrypto/asn1/t_crl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypto/asn1/t_crl.c b/lib/libcrypto/asn1/t_crl.c index 057b8fe3118..b7f94a86447 100644 --- a/lib/libcrypto/asn1/t_crl.c +++ b/lib/libcrypto/asn1/t_crl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: t_crl.c,v 1.18 2019/05/12 15:56:31 tb Exp $ */ +/* $OpenBSD: t_crl.c,v 1.19 2021/11/01 20:53:08 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 1999. */ @@ -66,6 +66,8 @@ #include <openssl/x509.h> #include <openssl/x509v3.h> +#include "x509_lcl.h" + int X509_CRL_print_fp(FILE *fp, X509_CRL *x) { |