diff options
author | Antony Dovgal <tony2001@php.net> | 2008-07-23 11:25:14 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2008-07-23 11:25:14 +0000 |
commit | 28a22396d4c12253f77c11095f37944a0dd661b9 (patch) | |
tree | 4a67877db12d22a70a443b40a74a74ee0e2efe9a /sapi/cli/php_cli.c | |
parent | 16ace1828e85f7cbe1179a29c88dad6d921e2a71 (diff) | |
download | php-git-28a22396d4c12253f77c11095f37944a0dd661b9.tar.gz |
MFH: invert the logics - FLAG_FCLOSE -> FLAG_NO_FCLOSE
Diffstat (limited to 'sapi/cli/php_cli.c')
-rw-r--r-- | sapi/cli/php_cli.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 6f6efb6dc5..68e2af3589 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -502,10 +502,6 @@ static void cli_register_file_handles(TSRMLS_D) /* {{{ */ return; } - s_in->flags |= PHP_STREAM_FLAG_FCLOSE; - s_out->flags |= PHP_STREAM_FLAG_FCLOSE; - s_err->flags |= PHP_STREAM_FLAG_FCLOSE; - #if PHP_DEBUG /* do not close stdout and stderr */ s_out->flags |= PHP_STREAM_FLAG_NO_CLOSE; |