summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2023-04-28 15:39:29 +0000
committertb <>2023-04-28 15:39:29 +0000
commitbc545104dfe0b8815d85b21c01aa74a9f558e99e (patch)
tree3bafe730154e14ff6fed7b301353f2802164a0cd
parentf957f5666c561ed19d6ccdd345549d64a645af0b (diff)
downloadopenbsd-bc545104dfe0b8815d85b21c01aa74a9f558e99e.tar.gz
openbsd-bc545104dfe0b8815d85b21c01aa74a9f558e99e.tar.bz2
openbsd-bc545104dfe0b8815d85b21c01aa74a9f558e99e.zip
Remove now no longer needed <assert.h>; sort headers
ok jsing
-rw-r--r--src/lib/libcrypto/x509/x509_policy.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/libcrypto/x509/x509_policy.c b/src/lib/libcrypto/x509/x509_policy.c
index 4598597e04..03f0f10ac5 100644
--- a/src/lib/libcrypto/x509/x509_policy.c
+++ b/src/lib/libcrypto/x509/x509_policy.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509_policy.c,v 1.22 2023/04/28 15:37:28 tb Exp $ */ 1/* $OpenBSD: x509_policy.c,v 1.23 2023/04/28 15:39:29 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2022, Google Inc. 3 * Copyright (c) 2022, Google Inc.
4 * 4 *
@@ -15,14 +15,12 @@
15 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */ 16 */
17 17
18#include <openssl/x509.h>
19
20#include <assert.h>
21#include <string.h> 18#include <string.h>
22 19
23#include <openssl/err.h> 20#include <openssl/err.h>
24#include <openssl/objects.h> 21#include <openssl/objects.h>
25#include <openssl/stack.h> 22#include <openssl/stack.h>
23#include <openssl/x509.h>
26#include <openssl/x509v3.h> 24#include <openssl/x509v3.h>
27 25
28#include "x509_internal.h" 26#include "x509_internal.h"