summaryrefslogtreecommitdiff
path: root/imap4d
diff options
context:
space:
mode:
authorWojciech Polak <polak@gnu.org>2003-01-18 21:18:33 +0000
committerWojciech Polak <polak@gnu.org>2003-01-18 21:18:33 +0000
commitcd5080337053debd2e001441a7de6f841723f840 (patch)
tree4e5ea98fbc4fc0b925e0fa120418e7b0dabf151a /imap4d
parente60beee7001d1d669834c83efbbd9e47002b3f18 (diff)
downloadmailutils-cd5080337053debd2e001441a7de6f841723f840.tar.gz
mailutils-cd5080337053debd2e001441a7de6f841723f840.tar.bz2
Check 'tls_available' before calling mu_deinit_tls_libs(). Just for make
sure...
Diffstat (limited to 'imap4d')
-rw-r--r--imap4d/util.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/imap4d/util.c b/imap4d/util.c
index c81ae058b..f23c8d3f3 100644
--- a/imap4d/util.c
+++ b/imap4d/util.c
@@ -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 */
}
-
-
-

Return to:

Send suggestions and report system problems to the System administrator.