diff options
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; } |