From b15651c95f43993d32855913ca32545b594a98af Mon Sep 17 00:00:00 2001 From: Rasmus Lerdorf Date: Thu, 1 Aug 2002 15:51:56 +0000 Subject: [PATCH] Ugh --- ext/standard/exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/exec.c b/ext/standard/exec.c index e0d9b2921d..532a1bb3f1 100644 --- a/ext/standard/exec.c +++ b/ext/standard/exec.c @@ -567,7 +567,7 @@ static void proc_open_rsrc_dtor(zend_rsrc_list_entry *rsrc TSRMLS_DC) do { wait_pid = waitpid(child, &wstatus, 0); - } while (wait_pid == -1 && errno = EINTR); + } while (wait_pid == -1 && errno == EINTR); if (wait_pid == -1) FG(pclose_ret) = -1; -- 2.40.0