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
commit93439cba8762cda2abd8b4987e623f72bd68213c (patch)
tree59c6571b3317e755199f62a1e82a797ebe2f767a /src
parent8ea3a4dc44d7ffc17ffda0ee703c31b26c06548f (diff)
downloadopenbsd-93439cba8762cda2abd8b4987e623f72bd68213c.tar.gz
openbsd-93439cba8762cda2abd8b4987e623f72bd68213c.tar.bz2
openbsd-93439cba8762cda2abd8b4987e623f72bd68213c.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