summaryrefslogtreecommitdiff
path: root/main/php.h
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-08-27 18:06:12 +0000
committerZeev Suraski <zeev@php.net>2000-08-27 18:06:12 +0000
commit1f7b735290d24df5fcd31924fcad6035ea9a53d8 (patch)
treeaa8121f5ed5abbdb787e29585dc94f91502effa3 /main/php.h
parent39770d99ead0aecbfae14d213d924f11f5576032 (diff)
downloadphp-git-1f7b735290d24df5fcd31924fcad6035ea9a53d8.tar.gz
- Forgot to fix non-ZTS CHDIR_FILE macro
Diffstat (limited to 'main/php.h')
-rw-r--r--main/php.h2
1 files changed, 1 insertions, 1 deletions
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)