diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-09-24 08:26:58 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-09-24 16:36:31 +0200 |
commit | e2dd435d473cdc97785df95d032276fafb4b7746 (patch) | |
tree | bca41b0000de0b0b46940feb79302ff2ca012309 /lib | |
parent | b939bc47b27cd57c6ebb852ad653933e4124b452 (diff) |
openssl: load built-in engines too
Regression since 38203f1
Reported-by: Jean Fabrice
Fixes #3023
Closes #3040
Diffstat (limited to 'lib')
-rw-r--r-- | lib/vtls/openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 230eea2d0..551298926 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -978,7 +978,7 @@ static int Curl_ossl_init(void) OPENSSL_load_builtin_modules(); -#ifdef HAVE_ENGINE_LOAD_BUILTIN_ENGINES +#ifdef USE_OPENSSL_ENGINE ENGINE_load_builtin_engines(); #endif |