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
bba6da36
...
bba6da36393870fa967ad2c811c2128da16fe2cf
authored
2003-02-03 11:27:02 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(util_set_input, util_set_output): Bugfix
1 parent
94e1a6a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
imap4d/util.c
imap4d/util.c
View file @
bba6da3
...
...
@@ -471,7 +471,7 @@ imap4d_readline (void)
}
else
if
(
rc
)
{
c
onst
c
har
*
p
;
char
*
p
;
if
(
stream_strerror
(
istream
,
&
p
))
p
=
strerror
(
errno
);
...
...
@@ -1113,7 +1113,7 @@ void
util_set_input
(
stream_t
str
)
{
if
(
istream
)
stream_destroy
(
istream
,
stream_get_owner
(
istream
));
stream_destroy
(
&
istream
,
stream_get_owner
(
istream
));
istream
=
str
;
}
...
...
@@ -1121,7 +1121,7 @@ void
util_set_output
(
stream_t
str
)
{
if
(
ostream
)
stream_destroy
(
ostream
,
stream_get_owner
(
ostream
));
stream_destroy
(
&
ostream
,
stream_get_owner
(
ostream
));
ostream
=
str
;
}
...
...
@@ -1188,7 +1188,7 @@ imap4d_init_tls_server ()
if
(
stream_open
(
stream
))
{
c
onst
c
har
*
p
;
char
*
p
;
stream_strerror
(
stream
,
&
p
);
syslog
(
LOG_ERR
,
_
(
"cannot open TLS stream: %s"
),
p
);
return
0
;
...
...
Please
register
or
sign in
to post a comment