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
b1b81f92
...
b1b81f92104d9545a087748af91ffe8879fc833e
authored
2003-01-06 14:48:39 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(pop3d_signal): Use pop3d_is_master().
1 parent
353d7ec3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
pop3d/signal.c
pop3d/signal.c
View file @
b1b81f9
...
...
@@ -39,12 +39,13 @@ pop3d_sigchld (int signo)
RETSIGTYPE
pop3d_signal
(
int
signo
)
{
syslog
(
LOG_CRIT
,
_
(
"got signal %s"
),
strsignal
(
signo
));
syslog
(
LOG_CRIT
,
_
(
"got signal %s"
),
strsignal
(
signo
));
/* Master process. */
if
(
!
ofile
)
if
(
pop3d_is_master
()
)
{
syslog
(
LOG_CRIT
,
_
(
"MASTER: exiting on signal"
));
exit
(
EXIT_FAILURE
);
/* abort(); */
exit
(
EXIT_FAILURE
);
}
if
(
signo
==
SIGALRM
)
...
...
Please
register
or
sign in
to post a comment