iliaa           Wed Jan 15 08:50:55 2003 EDT

  Modified files:              
    /php4/ext/interbase interbase.c 
  Log:
  Fixed typos.
  
  
Index: php4/ext/interbase/interbase.c
diff -u php4/ext/interbase/interbase.c:1.94 php4/ext/interbase/interbase.c:1.95
--- php4/ext/interbase/interbase.c:1.94 Tue Jan 14 22:37:11 2003
+++ php4/ext/interbase/interbase.c      Wed Jan 15 08:50:54 2003
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: interbase.c,v 1.94 2003/01/15 03:37:11 iliaa Exp $ */
+/* $Id: interbase.c,v 1.95 2003/01/15 13:50:54 iliaa Exp $ */
 
 
 /* TODO: Arrays, roles?
@@ -609,7 +609,7 @@
 
        php_info_print_table_start();
        php_info_print_table_row(2, "Interbase Support", "enabled");    
-       php_info_print_table_row(2, "Revision", "$Revision: 1.94 $");
+       php_info_print_table_row(2, "Revision", "$Revision: 1.95 $");
 #ifdef COMPILE_DL_INTERBASE
        php_info_print_table_row(2, "Dynamic Module", "yes");
 #endif
@@ -2697,7 +2697,7 @@
 /* Close or Cancel created or Close open blob */
 static void _php_ibase_blob_end(INTERNAL_FUNCTION_PARAMETERS, int bl_end)
 {
-       zval *blob_arg;
+       zval **blob_arg;
        ibase_blob_handle *ib_blob;
 
        RESET_ERRMSG;
@@ -2823,7 +2823,7 @@
    Output blob contents to browser */
 PHP_FUNCTION(ibase_blob_echo)
 {
-       zval *blob_arg;
+       zval **blob_arg;
        char bl_data[IBASE_BLOB_SEG];
        unsigned short seg_len;
        ibase_blob_handle *ib_blob_id;



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to