summaryrefslogtreecommitdiff
path: root/ext/standard/exec.c
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2002-08-01 15:51:56 +0000
committerRasmus Lerdorf <rasmus@php.net>2002-08-01 15:51:56 +0000
commitb15651c95f43993d32855913ca32545b594a98af (patch)
tree984972ce3bc193cd01f37aceccee496c5cb2009b /ext/standard/exec.c
parentf08a51f05a7125a04128ad25a33f860c495ef2c1 (diff)
downloadphp-git-b15651c95f43993d32855913ca32545b594a98af.tar.gz
Ugh
Diffstat (limited to 'ext/standard/exec.c')
-rw-r--r--ext/standard/exec.c2
1 files changed, 1 insertions, 1 deletions
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;