tony2001                Mon Feb 26 14:11:14 2007 UTC

  Modified files:              
    /php-src/ext/standard       filestat.c 
  Log:
  fix folding
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/filestat.c?r1=1.158&r2=1.159&diff_format=u
Index: php-src/ext/standard/filestat.c
diff -u php-src/ext/standard/filestat.c:1.158 
php-src/ext/standard/filestat.c:1.159
--- php-src/ext/standard/filestat.c:1.158       Mon Jan 22 09:32:55 2007
+++ php-src/ext/standard/filestat.c     Mon Feb 26 14:11:14 2007
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: filestat.c,v 1.158 2007/01/22 09:32:55 dmitry Exp $ */
+/* $Id: filestat.c,v 1.159 2007/02/26 14:11:14 tony2001 Exp $ */
 
 #include "php.h"
 #include "fopen_wrappers.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) U
    Get total disk space for filesystem that path is on */
@@ -401,7 +403,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) /* {{{ */
 {
        char *filename;
        int filename_len;
@@ -474,6 +476,7 @@
        }
        RETURN_TRUE;
 }
+/* }}} */
 #endif
 
 #ifndef NETWARE
@@ -505,7 +508,7 @@
 #endif /* !NETWARE */
 
 #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) /* {{{ */
 {
        char *filename;
        int filename_len;
@@ -577,6 +580,7 @@
                RETURN_FALSE;
        }
 }
+/* }}} */
 #endif
 
 #ifndef NETWARE

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to