Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
cd508033
...
cd5080337053debd2e001441a7de6f841723f840
authored
2003-01-18 21:18:33 +0000
by
Wojciech Polak
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Check 'tls_available' before calling mu_deinit_tls_libs(). Just for make
sure...
1 parent
e60beee7
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
ChangeLog
imap4d/util.c
pop3d/extra.c
ChangeLog
View file @
cd50803
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
)
...
...
imap4d/util.c
View file @
cd50803
...
...
@@ -1157,10 +1157,8 @@ util_bye ()
}
/* There's no reason closing in/out streams otherwise */
#ifdef WITH_TLS
if
(
tls_available
)
mu_deinit_tls_libs
();
#endif
/* WITH_TLS */
}
...
...
pop3d/extra.c
View file @
cd50803
...
...
@@ -184,6 +184,7 @@ pop3d_bye ()
}
/* There's no reason closing in/out streams otherwise */
#ifdef WITH_TLS
if
(
tls_available
)
mu_deinit_tls_libs
();
#endif
/* WITH_TLS */
}
...
...
Please
register
or
sign in
to post a comment