- David Byron fixed Curl_ossl_cleanup to actually call ENGINE_cleanup when

available.
This commit is contained in:
Daniel Stenberg 2009-12-17 13:29:41 +00:00
parent 414180b363
commit 10a11e3abe
4 changed files with 6 additions and 1 deletions

View file

@ -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