diff options
author | tb <> | 2025-05-10 05:54:39 +0000 |
---|---|---|
committer | tb <> | 2025-05-10 05:54:39 +0000 |
commit | dcbbedc9acedb9203cec6f635f57b433f541d560 (patch) | |
tree | 70b02845e44482dbe558f0dc5d503c5d977aa73d /src/lib/libcrypto/crypto_init.c | |
parent | 7a74ec170c7874b681282a81d43ff70a1fcf67fc (diff) | |
download | openbsd-dcbbedc9acedb9203cec6f635f57b433f541d560.tar.gz openbsd-dcbbedc9acedb9203cec6f635f57b433f541d560.tar.bz2 openbsd-dcbbedc9acedb9203cec6f635f57b433f541d560.zip |
Use err_local.h rather than err.h in most places
ok jsing
Diffstat (limited to 'src/lib/libcrypto/crypto_init.c')
-rw-r--r-- | src/lib/libcrypto/crypto_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/crypto_init.c b/src/lib/libcrypto/crypto_init.c index 6016d1ae40..931dff73f8 100644 --- a/src/lib/libcrypto/crypto_init.c +++ b/src/lib/libcrypto/crypto_init.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: crypto_init.c,v 1.22 2024/10/17 14:27:57 jsing Exp $ */ | 1 | /* $OpenBSD: crypto_init.c,v 1.23 2025/05/10 05:54:38 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018 Bob Beck <beck@openbsd.org> | 3 | * Copyright (c) 2018 Bob Beck <beck@openbsd.org> |
4 | * | 4 | * |
@@ -22,12 +22,12 @@ | |||
22 | 22 | ||
23 | #include <openssl/asn1.h> | 23 | #include <openssl/asn1.h> |
24 | #include <openssl/conf.h> | 24 | #include <openssl/conf.h> |
25 | #include <openssl/err.h> | ||
26 | #include <openssl/evp.h> | 25 | #include <openssl/evp.h> |
27 | #include <openssl/objects.h> | 26 | #include <openssl/objects.h> |
28 | #include <openssl/x509v3.h> | 27 | #include <openssl/x509v3.h> |
29 | 28 | ||
30 | #include "crypto_internal.h" | 29 | #include "crypto_internal.h" |
30 | #include "err_local.h" | ||
31 | #include "x509_issuer_cache.h" | 31 | #include "x509_issuer_cache.h" |
32 | 32 | ||
33 | int OpenSSL_config(const char *); | 33 | int OpenSSL_config(const char *); |