summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/engine
diff options
context:
space:
mode:
authortb <>2023-11-19 15:46:10 +0000
committertb <>2023-11-19 15:46:10 +0000
commit9e356d4225ee2dcd3e3eebabf384851ee547ec95 (patch)
tree9a8bf5329015d40f6a79820880c1ca7bb820bf58 /src/lib/libcrypto/engine
parentfea63fbd7eeaebeff6720b8ec754575f90e8eb77 (diff)
downloadopenbsd-9e356d4225ee2dcd3e3eebabf384851ee547ec95.tar.gz
openbsd-9e356d4225ee2dcd3e3eebabf384851ee547ec95.tar.bz2
openbsd-9e356d4225ee2dcd3e3eebabf384851ee547ec95.zip
Unifdef OPENSSL_NO_ENGINE in libcrypto
This is mechanical apart from a few manual edits to avoid doubled empty lines. ok jsing
Diffstat (limited to 'src/lib/libcrypto/engine')
-rw-r--r--src/lib/libcrypto/engine/engine_stubs.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libcrypto/engine/engine_stubs.c b/src/lib/libcrypto/engine/engine_stubs.c
index 3621da80ef..b2bd8f007a 100644
--- a/src/lib/libcrypto/engine/engine_stubs.c
+++ b/src/lib/libcrypto/engine/engine_stubs.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: engine_stubs.c,v 1.1 2023/07/21 09:04:23 tb Exp $ */ 1/* $OpenBSD: engine_stubs.c,v 1.2 2023/11/19 15:46:09 tb Exp $ */
2 2
3/* 3/*
4 * Written by Theo Buehler. Public domain. 4 * Written by Theo Buehler. Public domain.
@@ -6,8 +6,6 @@
6 6
7#include <openssl/engine.h> 7#include <openssl/engine.h>
8 8
9#ifdef OPENSSL_NO_ENGINE
10
11void 9void
12ENGINE_load_builtin_engines(void) 10ENGINE_load_builtin_engines(void)
13{ 11{
@@ -121,5 +119,3 @@ ENGINE_load_public_key(ENGINE *engine, const char *key_id,
121{ 119{
122 return NULL; 120 return NULL;
123} 121}
124
125#endif