From: Zeev Suraski Date: Sun, 27 Aug 2000 18:06:12 +0000 (+0000) Subject: - Forgot to fix non-ZTS CHDIR_FILE macro X-Git-Tag: php-4.0.2~37 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1f7b735290d24df5fcd31924fcad6035ea9a53d8;p=php - Forgot to fix non-ZTS CHDIR_FILE macro --- diff --git a/main/php.h b/main/php.h index 4d57925597..906fca8811 100644 --- a/main/php.h +++ b/main/php.h @@ -344,7 +344,7 @@ PHPAPI int cfg_get_string(char *varname, char **result); #define V_OPEN(open_args) open open_args #define V_CREAT(path, mode) creat(path, mode) #define V_CHDIR(path) chdir(path) -#define V_CHDIR_FILE(path) virtual_real_chdir_file(path, chdir) +#define V_CHDIR_FILE(path) virtual_chdir_file(path, chdir) #define V_GETWD(buf) getwd(buf) #define V_STAT(path, buff) stat(path, buff) #define V_LSTAT(path, buff) lstat(path, buff)