diff options
author | Stef Walter <stef@memberwebs.com> | 2005-12-08 23:54:05 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2005-12-08 23:54:05 +0000 |
commit | ddaf4d947759d963588ac5636f7a8f9b8b4809aa (patch) | |
tree | e1945c7113d035919624c654e53a3dfc5b0b4e97 | |
parent | c25be954c4a05dc4a8df0248e132091145c02857 (diff) |
Fix problem when waiting for processes.
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/proxsmtpd.c | 2 |
3 files changed, 3 insertions, 1 deletions
@@ -18,3 +18,4 @@ Piotr Klaban <post@klaban.torun.pl> Greg Hackney <hackney@swbell.net> Billy B. Bilano <mr.bill.bilano@email.server.unix.bill.bilano.biz> Loic Le Loarer <loic.le-loarer@polytechnique.org> +Jeff Fisher <jeff@lfchosting.com> @@ -1,5 +1,6 @@ 1.4 [???] - Fix crasher after connection closes unexpectedly. + - Fix problem with waiting for processes [Jeff Fisher] 1.3 [2005-10-21] - Handle condition of server refusing data transfers more gracefully. diff --git a/src/proxsmtpd.c b/src/proxsmtpd.c index 288e3d4..9bd25ac 100644 --- a/src/proxsmtpd.c +++ b/src/proxsmtpd.c @@ -873,7 +873,7 @@ static int wait_process(spctx_t* sp, pid_t pid, int* status) case 0: break; case -1: - if(errno != ECHILD || errno != ESRCH) + if(errno != ECHILD && errno != ESRCH) { sp_message(sp, LOG_CRIT, "error waiting on process"); return -1; |