Commit cd508033 cd5080337053debd2e001441a7de6f841723f840 by Wojciech Polak

Check 'tls_available' before calling mu_deinit_tls_libs(). Just for make

sure...
1 parent e60beee7
2003-01-18 Wojciech Polak
* imap4d/util.c (util_bye): Check 'tls_available' before
calling mu_deinit_tls_libs(). Just for make sure...
* pop3d/extra.c (pop3d_bye): Likewise.
2003-01-18 Sergey Poznyakoff
* include/mailutils/stream.h (stream_set_strerror)
......
......@@ -1157,10 +1157,8 @@ util_bye ()
}
/* There's no reason closing in/out streams otherwise */
#ifdef WITH_TLS
mu_deinit_tls_libs ();
if (tls_available)
mu_deinit_tls_libs ();
#endif /* WITH_TLS */
}
......
......@@ -184,7 +184,8 @@ pop3d_bye ()
}
/* There's no reason closing in/out streams otherwise */
#ifdef WITH_TLS
mu_deinit_tls_libs ();
if (tls_available)
mu_deinit_tls_libs ();
#endif /* WITH_TLS */
}
......