]> granicus.if.org Git - apache/commitdiff
remove #ifdef SHARED_MODULE around ssl library cleanup calls.
authorDoug MacEachern <dougm@apache.org>
Thu, 28 Feb 2002 05:28:43 +0000 (05:28 +0000)
committerDoug MacEachern <dougm@apache.org>
Thu, 28 Feb 2002 05:28:43 +0000 (05:28 +0000)
SHARED_MODULE is no longer defined, so we were leaking.
plus we always do a full startup/teardown regardless of being a dso or
static.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93636 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_init.c

index 89f62be2674deec634dd5c3a106a969fd8416c55..b49f97b6a5cb03f4b4732485618d3a8435bf3f70 100644 (file)
@@ -1012,11 +1012,9 @@ apr_status_t ssl_init_ModuleKill(void *data)
     /*
      * Try to kill the internals of the SSL library.
      */
-#ifdef SHARED_MODULE
     ERR_free_strings();
     ERR_remove_state(0);
     EVP_cleanup();
-#endif
 
     return APR_SUCCESS;
 }