]> granicus.if.org Git - php/commitdiff
- PHP_FOPEN -> V_FOPEN
authorAndi Gutmans <andi@php.net>
Sat, 15 Apr 2000 14:37:28 +0000 (14:37 +0000)
committerAndi Gutmans <andi@php.net>
Sat, 15 Apr 2000 14:37:28 +0000 (14:37 +0000)
main/configuration-parser.y

index b401d2225f0b32e560a3e1b75164b4ee58e772d6..e371ce96c6f2aacc0b2f7acee52f5cd4fa134f6d 100644 (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;