summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2024-01-10 21:34:53 +0000
committertb <>2024-01-10 21:34:53 +0000
commita240348636f7bae461e18511e7bf1a9a0f5a2b16 (patch)
treecd4d3d18c0707b510f79ef68a62a66ff42fba177 /src/lib
parentee2560ffdb421fb860f081d006c650bbff6348b7 (diff)
downloadopenbsd-a240348636f7bae461e18511e7bf1a9a0f5a2b16.tar.gz
openbsd-a240348636f7bae461e18511e7bf1a9a0f5a2b16.tar.bz2
openbsd-a240348636f7bae461e18511e7bf1a9a0f5a2b16.zip
X509_TRUST: tidy up includes
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/x509/x509_trs.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/libcrypto/x509/x509_trs.c b/src/lib/libcrypto/x509/x509_trs.c
index 4391907ca6..efa648c9eb 100644
--- a/src/lib/libcrypto/x509/x509_trs.c
+++ b/src/lib/libcrypto/x509/x509_trs.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509_trs.c,v 1.38 2024/01/10 21:19:56 tb Exp $ */ 1/* $OpenBSD: x509_trs.c,v 1.39 2024/01/10 21:34:53 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 1999. 3 * project 1999.
4 */ 4 */
@@ -57,9 +57,11 @@
57 */ 57 */
58 58
59#include <stdio.h> 59#include <stdio.h>
60#include <string.h>
61 60
61#include <openssl/asn1.h>
62#include <openssl/err.h> 62#include <openssl/err.h>
63#include <openssl/objects.h>
64#include <openssl/x509.h>
63#include <openssl/x509v3.h> 65#include <openssl/x509v3.h>
64 66
65#include "x509_local.h" 67#include "x509_local.h"