diff options
Diffstat (limited to 'ext/fbsql/php_fbsql.h')
-rw-r--r-- | ext/fbsql/php_fbsql.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/fbsql/php_fbsql.h b/ext/fbsql/php_fbsql.h index 584edf16b6..51c81158fe 100644 --- a/ext/fbsql/php_fbsql.h +++ b/ext/fbsql/php_fbsql.h @@ -98,13 +98,13 @@ PHP_FUNCTION(fbsql_get_autostart_info); //PHP_FUNCTION(fbsql_set_autostart_info); static void php_fbsql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int result_type); -static void php_fbsql_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistant); +static void php_fbsql_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent); ZEND_BEGIN_MODULE_GLOBALS(fbsql) long allowPersistent; long generateWarnings; long autoCommit; - long maxPersistant; + long maxPersistent; long maxLinks; long maxConnections; long maxResults; @@ -114,7 +114,7 @@ ZEND_BEGIN_MODULE_GLOBALS(fbsql) char *databasePassword; char *userName; char *userPassword; - long persistantCount; + long persistentCount; long linkCount; long linkIndex; |