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
c3cc0cec
...
c3cc0cecbd1c710cde8514ade7fb9bb7bf3f7112
authored
2003-08-29 19:08:08 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Do not attempt to write to the output stream if a signal was caught.
1 parent
6b1aa293
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
3 deletions
imap4d/bye.c
imap4d/bye.c
View file @
c3cc0ce
...
...
@@ -43,10 +43,8 @@ imap4d_bye0 (int reason, struct imap4d_command *command)
break
;
case
ERR_SIGNAL
:
if
(
!
util_is_master
())
util_out
(
RESP_BYE
,
"Quitting on signal"
);
syslog
(
LOG_ERR
,
_
(
"Quitting on signal"
));
break
;
exit
(
status
)
;
case
ERR_TIMEOUT
:
util_out
(
RESP_BYE
,
"Session timed out"
);
...
...
Please
register
or
sign in
to post a comment