edink Thu Apr 25 13:20:06 2002 EDT
Modified files:
/php4/ext/oracle oracle.c
Log:
MFB
Index: php4/ext/oracle/oracle.c
diff -u php4/ext/oracle/oracle.c:1.78 php4/ext/oracle/oracle.c:1.79
--- php4/ext/oracle/oracle.c:1.78 Thu Feb 28 03:26:31 2002
+++ php4/ext/oracle/oracle.c Thu Apr 25 13:20:05 2002
@@ -20,7 +20,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: oracle.c,v 1.78 2002/02/28 08:26:31 sebastian Exp $ */
+/* $Id: oracle.c,v 1.79 2002/04/25 17:20:05 edink Exp $ */
/* comment out the next line if you're on Oracle 7.x and don't have the olog
call. */
@@ -113,6 +113,8 @@
PHP_MINFO_FUNCTION(oracle);
/* }}} */
+static unsigned char second_args_force_ref[] = { 2, BYREF_NONE, BYREF_FORCE };
+
/* {{{ oracle_functions[]
*/
function_entry oracle_functions[] = {
@@ -126,7 +128,7 @@
PHP_FE(ora_errorcode,
NULL)
PHP_FE(ora_exec,
NULL)
PHP_FE(ora_fetch,
NULL)
- PHP_FE(ora_fetch_into,
second_arg_force_ref)
+ PHP_FE(ora_fetch_into,
second_args_force_ref)
PHP_FE(ora_columntype,
NULL)
PHP_FE(ora_columnname,
NULL)
PHP_FE(ora_columnsize,
NULL)
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|