rrichards Mon Mar 6 20:21:52 2006 UTC Modified files: (Branch: PHP_5_1) /php-src/ext/standard filestat.c Log: fix win build http://cvs.php.net/viewcvs.cgi/php-src/ext/standard/filestat.c?r1=1.136.2.4&r2=1.136.2.5&diff_format=u Index: php-src/ext/standard/filestat.c diff -u php-src/ext/standard/filestat.c:1.136.2.4 php-src/ext/standard/filestat.c:1.136.2.5 --- php-src/ext/standard/filestat.c:1.136.2.4 Sun Mar 5 18:57:54 2006 +++ php-src/ext/standard/filestat.c Mon Mar 6 20:21:52 2006 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: filestat.c,v 1.136.2.4 2006/03/05 18:57:54 derick Exp $ */ +/* $Id: filestat.c,v 1.136.2.5 2006/03/06 20:21:52 rrichards Exp $ */ #include "php.h" #include "safe_mode.h" @@ -323,7 +323,7 @@ } /* }}} */ - +#if !defined(WINDOWS) static void php_do_chgrp(INTERNAL_FUNCTION_PARAMETERS, int do_lchgrp) { zval **filename, **group; @@ -368,6 +368,7 @@ } RETURN_TRUE; } +#endif #ifndef NETWARE /* {{{ proto bool chgrp(string filename, mixed group)
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php