summaryrefslogtreecommitdiff
path: root/pop3d.c
diff options
context:
space:
mode:
authorJames Turner <james@calminferno.net>2014-04-09 21:36:45 -0400
committerJames Turner <james@calminferno.net>2014-04-09 21:36:45 -0400
commit90be9f6501860a22f694ef1659bef4d9182154e8 (patch)
treea38cf332eb9ca7b9c8066cfa4bd7b6fcc3cbc465 /pop3d.c
parent178fb764cf7835f3e0090b1a970742678333f8af (diff)
Make sure zombie processes are left over
Diffstat (limited to 'pop3d.c')
-rw-r--r--pop3d.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/pop3d.c b/pop3d.c
index 77cbfa0..73656a8 100644
--- a/pop3d.c
+++ b/pop3d.c
@@ -203,8 +203,9 @@ sig_handler(int sig, short event, void *arg)
event_loopexit(NULL);
break;
case SIGCHLD:
- if (waitpid(pop3e_pid, &status, WNOHANG) > 0)
- if (WIFEXITED(status) || WIFSIGNALED(status)) {
+ if (waitpid(WAIT_ANY, &status, WNOHANG) > 0)
+ if ((WIFEXITED(status) && WEXITSTATUS(status) != 0) ||
+ WIFSIGNALED(status)) {
logit(LOG_ERR, "Lost pop3 engine");
event_loopexit(NULL);
}