artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d887268
)
Use OPENSSL_config() instead of OPENSSL_load_builtin_modules()
author
tb
<tb@openbsd.org>
Sun, 18 Aug 2024 20:24:11 +0000
(20:24 +0000)
committer
tb
<tb@openbsd.org>
Sun, 18 Aug 2024 20:24:11 +0000
(20:24 +0000)
usr.bin/openssl/apps.c
patch
|
blob
|
history
diff --git
a/usr.bin/openssl/apps.c
b/usr.bin/openssl/apps.c
index
6ffbe6f
..
f58aa53
100644
(file)
--- a/
usr.bin/openssl/apps.c
+++ b/
usr.bin/openssl/apps.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: apps.c,v 1.6
7 2023/11/21 17:56:19
tb Exp $ */
+/* $OpenBSD: apps.c,v 1.6
8 2024/08/18 20:24:11
tb Exp $ */
/*
* Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
*
@@
-1053,7
+1053,7
@@
load_config(BIO *err, CONF *cnf)
if (cnf == NULL)
return 1;
- OPENSSL_
load_builtin_modules(
);
+ OPENSSL_
config(NULL
);
if (CONF_modules_load(cnf, NULL, 0) <= 0) {
BIO_printf(err, "Error configuring OpenSSL\n");