From: Antony Dovgal Date: Mon, 26 Feb 2007 14:11:14 +0000 (+0000) Subject: fix folding X-Git-Tag: RELEASE_1_0_1~148 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=67dda0e7d6ebbf2e8a164e76c3edb19befc50bca;p=php fix folding --- diff --git a/ext/standard/filestat.c b/ext/standard/filestat.c index 68190ad27f..e8e282cf57 100644 --- a/ext/standard/filestat.c +++ b/ext/standard/filestat.c @@ -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 @@ PHP_RSHUTDOWN_FUNCTION(filestat) } return SUCCESS; } +/* }}} */ /* {{{ proto float disk_total_space(string path) U Get total disk space for filesystem that path is on */ @@ -401,7 +403,7 @@ freespace_failure: /* }}} */ #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 @@ static void php_do_chgrp(INTERNAL_FUNCTION_PARAMETERS, int do_lchgrp) } RETURN_TRUE; } +/* }}} */ #endif #ifndef NETWARE @@ -505,7 +508,7 @@ PHP_FUNCTION(lchgrp) #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 @@ static void php_do_chown(INTERNAL_FUNCTION_PARAMETERS, int do_lchown) RETURN_FALSE; } } +/* }}} */ #endif #ifndef NETWARE