From 1f7b735290d24df5fcd31924fcad6035ea9a53d8 Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Sun, 27 Aug 2000 18:06:12 +0000 Subject: - Forgot to fix non-ZTS CHDIR_FILE macro --- main/php.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/php.h') 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) -- cgit v1.2.1