Removed SSL cleanup function. Let the operating system do this for us.
[citadel.git] / citadel / sysdep.c
index 31ece9856ce011e9a7a75848833b907a9b769811..280aa91e9ca4a37a75b838123d484ed08c2fd433 100644 (file)
@@ -37,7 +37,7 @@
 #include "config.h"
 #include "ctdl_module.h"
 #include "sysdep_decls.h"
-#include "modules/crypto/serv_crypto.h"        // Needed for init_ssl, client_write_ssl, client_read_ssl, destruct_ssl
+#include "modules/crypto/serv_crypto.h"        // Needed for init_ssl, client_write_ssl, client_read_ssl
 #include "housekeeping.h"
 #include "context.h"
 
@@ -632,9 +632,6 @@ void close_masters(void) {
 void sysdep_master_cleanup(void) {
        close_masters();
        context_cleanup();
-#ifdef HAVE_OPENSSL
-       destruct_ssl();
-#endif
 }