summaryrefslogtreecommitdiff
path: root/ext/standard/php_fopen_wrapper.c
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2002-04-11 12:13:17 +0000
committerWez Furlong <wez@php.net>2002-04-11 12:13:17 +0000
commit4adb1e58eb13a5bf789b24759682283bca38effd (patch)
tree857a5278b6e60b74d3e905f6572eea95748576e9 /ext/standard/php_fopen_wrapper.c
parenta272bc81bbb94c0ff73ab57c5f3c19fffede0cda (diff)
downloadphp-git-4adb1e58eb13a5bf789b24759682283bca38effd.tar.gz
Fix declarations (Thanks Sebastian)
Diffstat (limited to 'ext/standard/php_fopen_wrapper.c')
-rw-r--r--ext/standard/php_fopen_wrapper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_fopen_wrapper.c b/ext/standard/php_fopen_wrapper.c
index fcca4fce2d..6249aeae98 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, php_stream_wrapper_options *exoptions 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_context *context STREAMS_DC TSRMLS_DC)
{
FILE * fp = NULL;
php_stream * stream = NULL;