You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
481 B

  1. --- a/src/posttls-finger/posttls-finger.c
  2. +++ b/src/posttls-finger/posttls-finger.c
  3. @@ -374,7 +374,9 @@
  4. #include <tls.h>
  5. #ifdef USE_TLS
  6. +#ifndef OPENSSL_NO_ENGINE
  7. #include <openssl/engine.h>
  8. +#endif
  9. #endif
  10. /*
  11. @@ -1524,7 +1526,9 @@ static void ssl_cleanup(void)
  12. #else
  13. ERR_remove_state(0); /* Deprecated with OpenSSL 1.0.0 */
  14. #endif
  15. +#ifndef OPENSSL_NO_ENGINE
  16. ENGINE_cleanup();
  17. +#endif
  18. CONF_modules_unload(1);
  19. ERR_free_strings();
  20. EVP_cleanup();