summaryrefslogtreecommitdiff
path: root/ext/standard/php_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/standard/php_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/standard/php_fopen_wrapper.c')
-rw-r--r--ext/standard/php_fopen_wrapper.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/standard/php_fopen_wrapper.c b/ext/standard/php_fopen_wrapper.c
index 9dc6eb1384..7f34847a05 100644
--- a/ext/standard/php_fopen_wrapper.c
+++ b/ext/standard/php_fopen_wrapper.c
@@ -234,7 +234,9 @@ static php_stream_wrapper_ops php_stdio_wops = {
NULL, /* opendir */
"PHP",
NULL, /* unlink */
- NULL /* rename */
+ NULL, /* rename */
+ NULL, /* mkdir */
+ NULL /* rmdir */
};
php_stream_wrapper php_stream_php_wrapper = {