From: Hannes Magnusson Date: Fri, 8 May 2009 11:36:43 +0000 (+0000) Subject: MFb5.3: fix comments X-Git-Tag: php-5.4.0alpha1~191^2~3721 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ff5f9890fd5e3effd8311d93564c771c9e64c128;p=php MFb5.3: fix comments --- diff --git a/main/streams/userspace.c b/main/streams/userspace.c index 99cf7d4bda..7989d7f931 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;