php4-beta | 200004
Date: 04/15/00
- Next message: Barry Flanagan: "[PHP4BETA] PHP4 and AOLserver"
- Previous message: Zeev Suraski: "Re: [PHP4BETA] Current CVS fails to compile"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
andi Sat Apr 15 07:37:58 2000 EDT
Modified files:
/php4 configuration-parser.y
Log:
- PHP_FOPEN -> V_FOPEN
Index: php4/configuration-parser.y
diff -u php4/configuration-parser.y:1.41 php4/configuration-parser.y:1.42
--- php4/configuration-parser.y:1.41 Mon Apr 3 10:40:44 2000
+++ php4/configuration-parser.y Sat Apr 15 07:37:28 2000
@@ -19,7 +19,7 @@
-/* $Id: configuration-parser.y,v 1.41 2000/04/03 17:40:44 andi Exp $ */
+/* $Id: configuration-parser.y,v 1.42 2000/04/15 14:37:28 andi Exp $ */
#define DEBUG_CFG_PARSER 0
#include "php.h"
@@ -243,7 +243,7 @@
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 @@
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;
-- PHP 4.0 Beta Mailing List <http://www.php.net/version4/> To unsubscribe, e-mail: php4beta-unsubscribe <email protected> For additional commands, e-mail: php4beta-help <email protected> To contact the list administrators, e-mail: php4beta-admin <email protected>
- Next message: Barry Flanagan: "[PHP4BETA] PHP4 and AOLserver"
- Previous message: Zeev Suraski: "Re: [PHP4BETA] Current CVS fails to compile"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

