tony2001 Mon Feb 26 14:11:34 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/standard filestat.c
Log:
fix folding
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/filestat.c?r1=1.136.2.8.2.10&r2=1.136.2.8.2.11&diff_format=u
Index: php-src/ext/standard/filestat.c
diff -u php-src/ext/standard/filestat.c:1.136.2.8.2.10
php-src/ext/standard/filestat.c:1.136.2.8.2.11
--- php-src/ext/standard/filestat.c:1.136.2.8.2.10 Mon Jan 22 09:31:46 2007
+++ php-src/ext/standard/filestat.c Mon Feb 26 14:11:34 2007
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: filestat.c,v 1.136.2.8.2.10 2007/01/22 09:31:46 dmitry Exp $ */
+/* $Id: filestat.c,v 1.136.2.8.2.11 2007/02/26 14:11:34 tony2001 Exp $ */
#include "php.h"
#include "safe_mode.h"
@@ -98,14 +98,15 @@
#define S_IXROOT ( S_IXUSR | S_IXGRP | S_IXOTH )
-PHP_RINIT_FUNCTION(filestat)
+PHP_RINIT_FUNCTION(filestat) /* {{{ */
{
BG(CurrentStatFile)=NULL;
BG(CurrentLStatFile)=NULL;
return SUCCESS;
}
+/* }}} */
-PHP_RSHUTDOWN_FUNCTION(filestat)
+PHP_RSHUTDOWN_FUNCTION(filestat) /* {{{ */
{
if (BG(CurrentStatFile)) {
efree (BG(CurrentStatFile));
@@ -117,6 +118,7 @@
}
return SUCCESS;
}
+/* }}} */
/* {{{ proto float disk_total_space(string path)
Get total disk space for filesystem that path is on */
@@ -352,7 +354,7 @@
/* }}} */
#if !defined(WINDOWS)
-static void php_do_chgrp(INTERNAL_FUNCTION_PARAMETERS, int do_lchgrp)
+static void php_do_chgrp(INTERNAL_FUNCTION_PARAMETERS, int do_lchgrp) /* {{{ */
{
zval **filename, **group;
gid_t gid;
@@ -417,6 +419,7 @@
}
RETURN_TRUE;
}
+/* }}} */
#endif
#ifndef NETWARE
@@ -448,7 +451,7 @@
#endif
#if !defined(WINDOWS)
-static void php_do_chown(INTERNAL_FUNCTION_PARAMETERS, int do_lchown)
+static void php_do_chown(INTERNAL_FUNCTION_PARAMETERS, int do_lchown) /* {{{ */
{
zval **filename, **user;
int ret;
@@ -512,6 +515,7 @@
RETURN_FALSE;
}
}
+/* }}} */
#endif
#ifndef NETWARE
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php