diff options
author | Daniel Stenberg <daniel@haxx.se> | 2009-12-17 13:29:41 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2009-12-17 13:29:41 +0000 |
commit | 10a11e3abe54c4b8ce537f84416092d7e7c7d8a4 (patch) | |
tree | fd68b9ba5eec6171ae0f059e4014c4677d080118 /lib | |
parent | 414180b363ab9ba1104bb738c4f9e80d525c9b3c (diff) |
- David Byron fixed Curl_ossl_cleanup to actually call ENGINE_cleanup when
available.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssluse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssluse.c b/lib/ssluse.c index c4a809c0f..97ffe6180 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -709,7 +709,7 @@ void Curl_ossl_cleanup(void) /* EVP_cleanup() removes all ciphers and digests from the table. */ EVP_cleanup(); -#ifdef HAVE_ENGINE_cleanup +#ifdef HAVE_ENGINE_CLEANUP ENGINE_cleanup(); #endif |