diff options
-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 * |