summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbeck <>2023-04-26 18:59:36 +0000
committerbeck <>2023-04-26 18:59:36 +0000
commit5771c443bbf5cb66b1fbdd92d4c0fbdf7c87527d (patch)
tree59c6571b3317e755199f62a1e82a797ebe2f767a /src
parent5d33a39634fbeff69c05d501973a5ade98d9759b (diff)
downloadopenbsd-5771c443bbf5cb66b1fbdd92d4c0fbdf7c87527d.tar.gz
openbsd-5771c443bbf5cb66b1fbdd92d4c0fbdf7c87527d.tar.bz2
openbsd-5771c443bbf5cb66b1fbdd92d4c0fbdf7c87527d.zip
Use the correct headers to compile with libressl
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/x509/x509_policy.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/lib/libcrypto/x509/x509_policy.c b/src/lib/libcrypto/x509/x509_policy.c
index b0c27126c4..ec98829b98 100644
--- a/src/lib/libcrypto/x509/x509_policy.c
+++ b/src/lib/libcrypto/x509/x509_policy.c
@@ -15,15 +15,14 @@
15#include <openssl/x509.h> 15#include <openssl/x509.h>
16 16
17#include <assert.h> 17#include <assert.h>
18#include <string.h>
18 19
19#include <openssl/mem.h> 20#include <openssl/objects.h>
20#include <openssl/obj.h>
21#include <openssl/stack.h> 21#include <openssl/stack.h>
22#include <openssl/x509v3.h> 22#include <openssl/x509v3.h>
23 23
24#include "../internal.h" 24#include "x509_internal.h"
25#include "../x509v3/internal.h" 25#include "x509_local.h"
26#include "internal.h"
27 26
28 27
29// This file computes the X.509 policy tree, as described in RFC 5280, section 28// This file computes the X.509 policy tree, as described in RFC 5280, section