diff options
author | Wez Furlong <wez@php.net> | 2002-04-10 22:42:32 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2002-04-10 22:42:32 +0000 |
commit | e1d0a147901d27bb01b0ccda315a9fdd3474e1ee (patch) | |
tree | 693eee9be6ba188c62f1223eb2c96f70f23256dd /ext/standard/php_fopen_wrapper.c | |
parent | 3eafd2207ccb313cff264c2e5baaa26b707fbe4f (diff) | |
download | php-git-e1d0a147901d27bb01b0ccda315a9fdd3474e1ee.tar.gz |
Implement stream context and status notification system.
Bump the BC for zlib notice to a warning
# See my RFC to php-dev a few days ago
Diffstat (limited to 'ext/standard/php_fopen_wrapper.c')
-rw-r--r-- | ext/standard/php_fopen_wrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_fopen_wrapper.c b/ext/standard/php_fopen_wrapper.c index e7f07a9e9b..fcca4fce2d 100644 --- a/ext/standard/php_fopen_wrapper.c +++ b/ext/standard/php_fopen_wrapper.c @@ -30,7 +30,7 @@ #include "php_standard.h" #include "php_fopen_wrappers.h" -php_stream * php_stream_url_wrap_php(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path STREAMS_DC TSRMLS_DC) +php_stream * php_stream_url_wrap_php(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_wrapper_options *exoptions STREAMS_DC TSRMLS_DC) { FILE * fp = NULL; php_stream * stream = NULL; |