summaryrefslogtreecommitdiff
path: root/ext/zlib/zlib_fopen_wrapper.c
diff options
context:
space:
mode:
authorSara Golemon <pollita@php.net>2003-12-13 04:07:18 +0000
committerSara Golemon <pollita@php.net>2003-12-13 04:07:18 +0000
commitc56647833be9f32aea9eef211c22ce5d4eb841b7 (patch)
tree2b7b3141e27adf7cababccbcb8456e10ceeff667 /ext/zlib/zlib_fopen_wrapper.c
parentbef6368deed93518f1dc81168487bbed08a464b6 (diff)
downloadphp-git-c56647833be9f32aea9eef211c22ce5d4eb841b7.tar.gz
Route mkdir()/rmdir() via wrapper ops.
Move current rmdir()/rmdir() code to plain_wrappers.c Implement mkdir()/rmdir() in ftp:// wrapper
Diffstat (limited to 'ext/zlib/zlib_fopen_wrapper.c')
-rw-r--r--ext/zlib/zlib_fopen_wrapper.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/zlib/zlib_fopen_wrapper.c b/ext/zlib/zlib_fopen_wrapper.c
index e5358e97e6..fa260feb92 100644
--- a/ext/zlib/zlib_fopen_wrapper.c
+++ b/ext/zlib/zlib_fopen_wrapper.c
@@ -161,7 +161,9 @@ static php_stream_wrapper_ops gzip_stream_wops = {
NULL, /* opendir */
"ZLIB",
NULL, /* unlink */
- NULL /* rename */
+ NULL, /* rename */
+ NULL, /* mkdir */
+ NULL /* rmdir */
};
php_stream_wrapper php_stream_gzip_wrapper = {