diff options
author | Zeev Suraski <zeev@php.net> | 2000-04-20 17:24:01 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-04-20 17:24:01 +0000 |
commit | 883bd2b1de0afae5a3b9f36c0778ba0b08390e25 (patch) | |
tree | 55edad9c20fa7047ebc822893ca50548336f6655 /main/php.h | |
parent | 7412bd5c849ac8b49da2ffc195110307fae2ba37 (diff) | |
download | php-git-883bd2b1de0afae5a3b9f36c0778ba0b08390e25.tar.gz |
- Fix virtual cwd bug
- Add more V_STAT() V_LSTAT() changes
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/php.h b/main/php.h index db23919e21..97596d16d3 100644 --- a/main/php.h +++ b/main/php.h @@ -295,6 +295,7 @@ PHPAPI int cfg_get_string(char *varname, char **result); #define V_CHDIR_FILE(path) virtual_chdir_file(path) #define V_GETWD(buf) #define V_STAT(path, buff) virtual_stat(path, buff) +#define V_LSTAT(path, buff) virtual_lstat(path, buff) #else #define V_GETCWD(buff, size) getcwd(buff,size) #define V_FOPEN(path, mode) fopen(path, mode) @@ -302,6 +303,7 @@ PHPAPI int cfg_get_string(char *varname, char **result); #define V_CHDIR_FILE(path) chdir_file(path) #define V_GETWD(buf) getwd(buf) #define V_STAT(path, buff) stat(path, buff) +#define V_LSTAT(path, buff) lstat(path, buff) #endif #include "zend_constants.h" |