diff options
author | Zeev Suraski <zeev@php.net> | 1999-12-17 19:16:50 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-12-17 19:16:50 +0000 |
commit | 02d3b39420839c9e09fd7c391f158e5c510bd600 (patch) | |
tree | 0dbd660f36a226fc545e719cb226114bb60f6c7c /ext/oci8 | |
parent | 9ebd037226fcaa1804df73c419d5529a16957e0b (diff) | |
download | php-git-02d3b39420839c9e09fd7c391f158e5c510bd600.tar.gz |
More php3_ annihilation
Diffstat (limited to 'ext/oci8')
-rw-r--r-- | ext/oci8/oci8.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index a29124b00b..b6f8e4cf89 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -2532,7 +2532,7 @@ PHP_FUNCTION(ocisavelobfile) convert_to_string_ex(arg); - if (_php3_check_open_basedir((*arg)->value.str.val)) { + if (php_check_open_basedir((*arg)->value.str.val)) { RETURN_FALSE; } @@ -2675,7 +2675,7 @@ PHP_FUNCTION(ociwritelobtofile) } if (filename && *filename) { - if (_php3_check_open_basedir(filename)) { + if (php_check_open_basedir(filename)) { goto bail; } |