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/ts/ts_lib.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/ts/ts_lib.c')
-rw-r--r-- | lib/libcrypto/ts/ts_lib.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypto/ts/ts_lib.c b/lib/libcrypto/ts/ts_lib.c index 293564118fd..cdfa9db3510 100644 --- a/lib/libcrypto/ts/ts_lib.c +++ b/lib/libcrypto/ts/ts_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ts_lib.c,v 1.10 2015/09/10 14:29:22 jsing Exp $ */ +/* $OpenBSD: ts_lib.c,v 1.11 2021/11/01 20:53:08 tb Exp $ */ /* Written by Zoltan Glozik (zglozik@stones.com) for the OpenSSL * project 2002. */ @@ -64,6 +64,8 @@ #include <openssl/ts.h> #include <openssl/x509v3.h> +#include "x509_lcl.h" + /* Local function declarations. */ /* Function definitions. */ |