fix compilation problem with OpenSSL < 1.0.0

This commit is contained in:
Per Allansson 2014-01-24 09:13:34 +01:00
parent 4d458d2dd0
commit 6fa669a97e
2 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,7 @@
- fix compilation problem with OpenSSL < 1.0.0
=== 1.6 (2014-01-21)
- add support for reading password from file
- add support for asking for password (on systems that
provide support for it)

View File

@ -726,7 +726,9 @@ static void cleanup_lib_state(void)
EVP_cleanup();
CONF_modules_free();
CRYPTO_cleanup_all_ex_data();
#if OPENSSL_VERSION_NUMBER > 0x10000000
ERR_remove_thread_state(NULL);
#endif
ERR_free_strings();
}