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/main.c | |
parent | 603d5ff5d8e2ecfff40f47f9a1e1be8739cec0db (diff) | |
download | php-git-1665cba750539a4245cf600bacdff3f74fe7bbfd.tar.gz |
- Change PHP_ to V_ (directory & file functions)
Diffstat (limited to 'main/main.c')
-rw-r--r-- | main/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c index 9c0eae11ed..1ec9de91f9 100644 --- a/main/main.c +++ b/main/main.c @@ -252,7 +252,7 @@ void php_log_err(char *log_message) return; } #endif - log_file = PHP_FOPEN(PG(error_log), "a"); + log_file = V_FOPEN(PG(error_log), "a"); if (log_file != NULL) { time(&error_time); strftime(error_time_str, 128, "%d-%b-%Y %H:%M:%S", localtime_r(&error_time, &tmbuf)); |