fmk             Wed Jan  8 18:18:54 2003 EDT

  Modified files:              
    /php4/ext/fbsql     php_fbsql.h 
  Log:
  Changed global data type to avoid problems with initialization
  
Index: php4/ext/fbsql/php_fbsql.h
diff -u php4/ext/fbsql/php_fbsql.h:1.22 php4/ext/fbsql/php_fbsql.h:1.23
--- php4/ext/fbsql/php_fbsql.h:1.22     Tue Dec 31 11:06:35 2002
+++ php4/ext/fbsql/php_fbsql.h  Wed Jan  8 18:18:54 2003
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php_fbsql.h,v 1.22 2002/12/31 16:06:35 sebastian Exp $ */
+/* $Id: php_fbsql.h,v 1.23 2003/01/08 23:18:54 fmk Exp $ */
 
 #define HAVE_FBSQL 1
 
@@ -105,9 +105,9 @@
 static void php_fbsql_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent);
 
 ZEND_BEGIN_MODULE_GLOBALS(fbsql)
-   long allowPersistent;
-   long generateWarnings;
-   long autoCommit;
+   zend_bool allowPersistent;
+   zend_bool generateWarnings;
+   zend_bool autoCommit;
    long maxPersistent;
    long maxLinks;
    long maxConnections;



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

Reply via email to