diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-04-28 15:39:30 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-04-28 15:39:30 +0000 |
commit | f1c14fa360274e753f94dada45c87d9f0627c234 (patch) | |
tree | 1f2c79eb7e82bf8e9bfa98089fab9dd0da361feb /lib | |
parent | bbb1189eae7d1abaa1b402755455ab0f6f610c07 (diff) |
Remove now no longer needed <assert.h>; sort headers
ok jsing
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/x509/x509_policy.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libcrypto/x509/x509_policy.c b/lib/libcrypto/x509/x509_policy.c index 4598597e041..03f0f10ac52 100644 --- a/lib/libcrypto/x509/x509_policy.c +++ b/lib/libcrypto/x509/x509_policy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509_policy.c,v 1.22 2023/04/28 15:37:28 tb Exp $ */ +/* $OpenBSD: x509_policy.c,v 1.23 2023/04/28 15:39:29 tb Exp $ */ /* * Copyright (c) 2022, Google Inc. * @@ -15,14 +15,12 @@ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include <openssl/x509.h> - -#include <assert.h> #include <string.h> #include <openssl/err.h> #include <openssl/objects.h> #include <openssl/stack.h> +#include <openssl/x509.h> #include <openssl/x509v3.h> #include "x509_internal.h" |