1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 00:48:25 +02:00

- PHP_FOPEN -> V_FOPEN

This commit is contained in:
Andi Gutmans
2000-04-15 14:37:28 +00:00
parent f0c7e0275f
commit b8fd674453
+2 -2
View File
@@ -243,7 +243,7 @@ PHP_MINIT_FUNCTION(browscap)
return FAILURE;
}
cfgin = PHP_FOPEN(browscap, "r");
cfgin = V_FOPEN(browscap, "r");
if (!cfgin) {
php_error(E_WARNING,"Cannot open '%s' for reading", browscap);
return FAILURE;
@@ -272,7 +272,7 @@ PHP_FUNCTION(parse_ini_file)
WRONG_PARAM_COUNT;
}
convert_to_string_ex(filename);
cfgin = PHP_FOPEN((*filename)->value.str.val, "r");
cfgin = V_FOPEN((*filename)->value.str.val, "r");
if (!cfgin) {
php_error(E_WARNING,"Cannot open '%s' for reading", (*filename)->value.str.val);
return;