diff options
-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; |