diff options
author | Andi Gutmans <andi@php.net> | 2000-03-30 22:56:34 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-03-30 22:56:34 +0000 |
commit | 9c3d6304dd7fe870278a7ad8688e40a9645f609c (patch) | |
tree | c1ac0b30f40abbb832d9ae2eadc492079a7f8d7e /ext/rpc | |
parent | 9df7df3293302198a29b1657682dba49ce02aa6b (diff) | |
download | php-git-9c3d6304dd7fe870278a7ad8688e40a9645f609c.tar.gz |
- Hopefully got most of them. We also need a chdir_file function like
for Apache.
Diffstat (limited to 'ext/rpc')
-rw-r--r-- | ext/rpc/com/COM.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/rpc/com/COM.c b/ext/rpc/com/COM.c index 8d64ffcbc3..8be37e64bc 100644 --- a/ext/rpc/com/COM.c +++ b/ext/rpc/com/COM.c @@ -161,7 +161,7 @@ static PHP_INI_MH(OnTypelibFileChange) #endif - if (!new_value || (typelib_file=fopen(new_value, "r"))==NULL) { + if (!new_value || (typelib_file=PHP_FOPEN(new_value, "r"))==NULL) { return FAILURE; } |