summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannes Magnusson <bjori@php.net>2009-05-08 11:35:12 +0000
committerHannes Magnusson <bjori@php.net>2009-05-08 11:35:12 +0000
commitebf7a8e9a3424f829157efb27bbee6e14ef4e5ab (patch)
treebd91ea19686260f0bbcb5781559d655d250dad69
parent7d61fa216d30414da6d2908cabf413db7cbb2440 (diff)
downloadphp-git-ebf7a8e9a3424f829157efb27bbee6e14ef4e5ab.tar.gz
Fix comments
-rw-r--r--main/streams/userspace.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/main/streams/userspace.c b/main/streams/userspace.c
index d22be609a4..f4294ceb5d 100644
--- a/main/streams/userspace.c
+++ b/main/streams/userspace.c
@@ -1212,7 +1212,7 @@ static int user_wrapper_mkdir(php_stream_wrapper *wrapper, char *url, int mode,
add_property_null(object, "context");
}
- /* call the unlink method */
+ /* call the mkdir method */
MAKE_STD_ZVAL(zfilename);
ZVAL_STRING(zfilename, url, 1);
args[0] = &zfilename;
@@ -1277,7 +1277,7 @@ static int user_wrapper_rmdir(php_stream_wrapper *wrapper, char *url, int option
add_property_null(object, "context");
}
- /* call the unlink method */
+ /* call the rmdir method */
MAKE_STD_ZVAL(zfilename);
ZVAL_STRING(zfilename, url, 1);
args[0] = &zfilename;
@@ -1337,9 +1337,7 @@ static int user_wrapper_stat_url(php_stream_wrapper *wrapper, char *url, int fla
add_property_null(object, "context");
}
- /* call the stat_url method */
-
- /* call it's stream_open method - set up params first */
+ /* call it's stat_url method - set up params first */
MAKE_STD_ZVAL(zfilename);
ZVAL_STRING(zfilename, url, 1);
args[0] = &zfilename;