From: Rasmus Lerdorf Date: Thu, 1 Aug 2002 15:51:56 +0000 (+0000) Subject: Ugh X-Git-Tag: dev~64 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b15651c95f43993d32855913ca32545b594a98af;p=php Ugh --- 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;