From: Ilia Alshanetsky Date: Mon, 22 Oct 2007 22:42:54 +0000 (+0000) Subject: MFB: Fixed bug #4294 (Move *timeout initialization from RINIT to connect X-Git-Tag: RELEASE_2_0_0a1~1560 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=21a455a4540078c653ceee5111de9b0ed946bd51;p=php MFB: Fixed bug #4294 (Move *timeout initialization from RINIT to connect time) --- diff --git a/ext/mssql/php_mssql.c b/ext/mssql/php_mssql.c index 442c4702a9..f3eddd4d82 100644 --- a/ext/mssql/php_mssql.c +++ b/ext/mssql/php_mssql.c @@ -345,9 +345,7 @@ PHP_RINIT_FUNCTION(mssql) MS_SQL_G(min_error_severity) = MS_SQL_G(cfg_min_error_severity); MS_SQL_G(min_message_severity) = MS_SQL_G(cfg_min_message_severity); if (MS_SQL_G(connect_timeout) < 1) MS_SQL_G(connect_timeout) = 1; - dbsetlogintime(MS_SQL_G(connect_timeout)); if (MS_SQL_G(timeout) < 0) MS_SQL_G(timeout) = 60; - dbsettime(MS_SQL_G(timeout)); if (MS_SQL_G(max_procs) != -1) { dbsetmaxprocs((TDS_SHORT)MS_SQL_G(max_procs)); } @@ -468,6 +466,9 @@ static void php_mssql_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent) RETURN_FALSE; } + dbsetlogintime(MS_SQL_G(connect_timeout)); + dbsettime(MS_SQL_G(timeout)); + /* set a DBLOGIN record */ if ((mssql.login = dblogin()) == NULL) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to allocate login record");