diff options
author | Zeev Suraski <zeev@php.net> | 2003-08-03 17:44:39 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2003-08-03 17:44:39 +0000 |
commit | 538d58dd5f13a3ffda958ec002733dcbbc965352 (patch) | |
tree | 6d82510f96846c52de5ca250ddb337e1a21918c7 /ext/oracle/oracle.c | |
parent | 4e796a70802e42ed03b12a18375b0f446a251e59 (diff) | |
download | php-git-538d58dd5f13a3ffda958ec002733dcbbc965352.tar.gz |
Use new infrastructure.
There are bound to be some messups, please report build/runtime bugs!
Diffstat (limited to 'ext/oracle/oracle.c')
-rw-r--r-- | ext/oracle/oracle.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/oracle/oracle.c b/ext/oracle/oracle.c index 03cbff635a..002c5109bb 100644 --- a/ext/oracle/oracle.c +++ b/ext/oracle/oracle.c @@ -109,8 +109,6 @@ PHP_RSHUTDOWN_FUNCTION(oracle); PHP_MINFO_FUNCTION(oracle); /* }}} */ -static unsigned char second_args_force_ref[] = { 2, BYREF_NONE, BYREF_FORCE }; - /* {{{ oracle_functions[] */ function_entry oracle_functions[] = { @@ -124,7 +122,7 @@ function_entry oracle_functions[] = { PHP_FE(ora_errorcode, NULL) PHP_FE(ora_exec, NULL) PHP_FE(ora_fetch, NULL) - PHP_FE(ora_fetch_into, second_args_force_ref) + PHP_FE(ora_fetch_into, second_arg_force_ref) PHP_FE(ora_columntype, NULL) PHP_FE(ora_columnname, NULL) PHP_FE(ora_columnsize, NULL) |