diff options
author | Andi Gutmans <andi@php.net> | 2000-04-15 14:20:01 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-04-15 14:20:01 +0000 |
commit | 1665cba750539a4245cf600bacdff3f74fe7bbfd (patch) | |
tree | dafdf6338d70127846edf9f25cb6955777e7b6de /main/safe_mode.c | |
parent | 603d5ff5d8e2ecfff40f47f9a1e1be8739cec0db (diff) | |
download | php-git-1665cba750539a4245cf600bacdff3f74fe7bbfd.tar.gz |
- Change PHP_ to V_ (directory & file functions)
Diffstat (limited to 'main/safe_mode.c')
-rw-r--r-- | main/safe_mode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/safe_mode.c b/main/safe_mode.c index b072552787..ac33ba88db 100644 --- a/main/safe_mode.c +++ b/main/safe_mode.c @@ -88,7 +88,7 @@ PHPAPI int php_checkuid(const char *fn, int mode) { duid = sb.st_uid; } else { s = emalloc(MAXPATHLEN+1); - if (!PHP_GETCWD(s,MAXPATHLEN)) { + if (!V_GETCWD(s,MAXPATHLEN)) { php_error(E_WARNING, "Unable to access current working directory"); return(0); } |