diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2002-11-21 10:29:11 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2002-11-21 10:29:11 +0000 |
commit | fb5ac5d28694480d307deabc41e5765d9706217e (patch) | |
tree | 12eec01c42a60f5cc6d4ab340db2ab804a205cca /ext/standard/php_fopen_wrapper.c | |
parent | 5d0f205df8a9fb23beb226adfa899e7308cd031b (diff) | |
download | php-git-fb5ac5d28694480d307deabc41e5765d9706217e.tar.gz |
the apache 1.x sapi read_posts tests for SG(read_post_bytes) being
counted up, so lets make it happy although this value is not really
needed in these cases ...
Diffstat (limited to 'ext/standard/php_fopen_wrapper.c')
-rw-r--r-- | ext/standard/php_fopen_wrapper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/php_fopen_wrapper.c b/ext/standard/php_fopen_wrapper.c index 5d40a5a9aa..27230602a3 100644 --- a/ext/standard/php_fopen_wrapper.c +++ b/ext/standard/php_fopen_wrapper.c @@ -96,6 +96,7 @@ static size_t php_stream_input_read(php_stream *stream, char *buf, size_t count } } + SG(read_post_bytes) += read_bytes; return read_bytes; } |