]> granicus.if.org Git - php/commitdiff
add forgotten parameter
authorWez Furlong <wez@php.net>
Wed, 20 Mar 2002 13:21:55 +0000 (13:21 +0000)
committerWez Furlong <wez@php.net>
Wed, 20 Mar 2002 13:21:55 +0000 (13:21 +0000)
ext/zlib/php_zlib.h
ext/zlib/zlib_fopen_wrapper.c

index 0872b3e4c50b9b41625d0a7311d4efecf41124ac..f3da984d2df4823b3b1b455dbf61867e4f8ca07a 100644 (file)
@@ -66,7 +66,7 @@ PHP_FUNCTION(ob_gzhandler);
 
 int php_enable_output_compression(int buffer_size TSRMLS_DC);
 
-php_stream *php_stream_gzopen(char *path, char *mode, int options, char **opened_path STREAMS_DC TSRMLS_DC);
+php_stream *php_stream_gzopen(char *path, char *mode, int options, char **opened_path, void *wrappercontext STREAMS_DC TSRMLS_DC);
 extern php_stream_ops php_stream_gzio_ops;
 extern php_stream_wrapper php_stream_gzip_wrapper;
 
index 49283982b97bcf81f5e71eca233d2c1303b5b832..df2961c4be7ffb39d2769b6c6900f041df60d8a2 100644 (file)
@@ -80,7 +80,7 @@ php_stream_ops php_stream_gzio_ops = {
        NULL, "ZLIB"
 };
 
-php_stream *php_stream_gzopen(char *path, char *mode, int options, char **opened_path STREAMS_DC TSRMLS_DC)
+php_stream *php_stream_gzopen(char *path, char *mode, int options, char **opened_path, void *wrappercontext STREAMS_DC TSRMLS_DC)
 {
        struct php_gz_stream_data_t *self;
        php_stream *stream = NULL;