summaryrefslogtreecommitdiff
path: root/ext/standard/pageinfo.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-08-02 19:17:14 +0000
committerZeev Suraski <zeev@php.net>1999-08-02 19:17:14 +0000
commit3cb1eb047187d53688545ae6f64d4df880298e72 (patch)
tree7fb20f178b9df5a33a83a2b7537f5614910697c0 /ext/standard/pageinfo.c
parent07e0885519ccabbd9cebfce7223be657171a6629 (diff)
downloadphp-git-3cb1eb047187d53688545ae6f64d4df880298e72.tar.gz
Removed '3' from key functions in PHP (maintained compatibility through
php3_compat.h)
Diffstat (limited to 'ext/standard/pageinfo.c')
-rw-r--r--ext/standard/pageinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/pageinfo.c b/ext/standard/pageinfo.c
index e0b7593331..464d2a0bed 100644
--- a/ext/standard/pageinfo.c
+++ b/ext/standard/pageinfo.c
@@ -72,7 +72,7 @@ static void _php3_statpage(void)
path = SG(request_info).path_translated;
if (path != NULL) {
if (stat(path, &sb) == -1) {
- php3_error(E_WARNING, "Unable to find file: '%s'", path);
+ php_error(E_WARNING, "Unable to find file: '%s'", path);
return;
}
page_uid = sb.st_uid;