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 /main/php_streams.h | |
parent | 16ace1828e85f7cbe1179a29c88dad6d921e2a71 (diff) | |
download | php-git-28a22396d4c12253f77c11095f37944a0dd661b9.tar.gz |
MFH: invert the logics - FLAG_FCLOSE -> FLAG_NO_FCLOSE
Diffstat (limited to 'main/php_streams.h')
-rwxr-xr-x | main/php_streams.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_streams.h b/main/php_streams.h index 6268d1b971..e7effd1f22 100755 --- a/main/php_streams.h +++ b/main/php_streams.h @@ -183,7 +183,7 @@ struct _php_stream_wrapper { #define PHP_STREAM_FLAG_IS_DIR 64 -#define PHP_STREAM_FLAG_FCLOSE 128 +#define PHP_STREAM_FLAG_NO_FCLOSE 128 struct _php_stream { php_stream_ops *ops; |