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
ef08c4fb
...
ef08c4fb0512ea88366a4ae45019db244755f2e6
authored
2003-01-31 15:03:01 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(pop3d_readline): Fixed misguiding diagnostics. Check for eof.
1 parent
e8afa273
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
pop3d/extra.c
pop3d/extra.c
View file @
ef08c4f
...
...
@@ -251,7 +251,12 @@ pop3d_readline (char *buffer, size_t size)
if
(
stream_strerror
(
ostream
,
&
p
))
p
=
strerror
(
errno
);
syslog
(
LOG_ERR
,
_
(
"write failed: %s"
),
p
);
syslog
(
LOG_ERR
,
_
(
"read failed: %s"
),
p
);
pop3d_abquit
(
ERR_NO_OFILE
);
}
else
if
(
nbytes
==
0
)
{
syslog
(
LOG_ERR
,
_
(
"unexpected eof on input"
));
pop3d_abquit
(
ERR_NO_OFILE
);
}
...
...
Please
register
or
sign in
to post a comment