diff options
author | Pierre Joye <pajoye@php.net> | 2010-09-13 11:17:40 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2010-09-13 11:17:40 +0000 |
commit | f4da90705b75b6f61d16dd324736aed482553b32 (patch) | |
tree | 3938fe1e5cdc0724dac6eff273b31c3dc09cb4e8 | |
parent | 25ac985422e1fe1e3ab53135e116815870ca5fdc (diff) | |
download | php-git-f4da90705b75b6f61d16dd324736aed482553b32.tar.gz |
- use php_sys_sat
-rw-r--r-- | win32/glob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/glob.c b/win32/glob.c index d58d6ad09c..a197f3bbee 100644 --- a/win32/glob.c +++ b/win32/glob.c @@ -873,7 +873,7 @@ g_stat(fn, sb, pglob) return(-1); if (pglob->gl_flags & GLOB_ALTDIRFUNC) return((*pglob->gl_stat)(buf, sb)); - return(stat(buf, sb)); + return(php_sys_stat(buf, sb)); } static Char * |