diff options
| author | Sara Golemon <pollita@php.net> | 2003-12-12 23:06:42 +0000 |
|---|---|---|
| committer | Sara Golemon <pollita@php.net> | 2003-12-12 23:06:42 +0000 |
| commit | b1f8236b63ae9ee1f3cec490f093cbb8cfff407f (patch) | |
| tree | 7221777bf6d4cc433e5b9fb3503ba6123a12ee94 /ext/zlib/zlib_fopen_wrapper.c | |
| parent | 23afd9b166ece8553e5b154d4ea58bfeec037374 (diff) | |
| download | php-git-b1f8236b63ae9ee1f3cec490f093cbb8cfff407f.tar.gz | |
Route rename() via wrapper ops.
Move current rename() code to main/streams/plain_wrapper.c
Implement ftp/rename()
Implement userstreams/rename()
Diffstat (limited to 'ext/zlib/zlib_fopen_wrapper.c')
| -rw-r--r-- | ext/zlib/zlib_fopen_wrapper.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/zlib/zlib_fopen_wrapper.c b/ext/zlib/zlib_fopen_wrapper.c index 32dc3c1cc8..e5358e97e6 100644 --- a/ext/zlib/zlib_fopen_wrapper.c +++ b/ext/zlib/zlib_fopen_wrapper.c @@ -160,7 +160,8 @@ static php_stream_wrapper_ops gzip_stream_wops = { NULL, /* stat_url */ NULL, /* opendir */ "ZLIB", - NULL /* unlink */ + NULL, /* unlink */ + NULL /* rename */ }; php_stream_wrapper php_stream_gzip_wrapper = { |
