summaryrefslogtreecommitdiff
path: root/ext/pgsql/pgsql.c
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2002-02-12 10:01:08 +0000
committerYasuo Ohgaki <yohgaki@php.net>2002-02-12 10:01:08 +0000
commitc1507e1e40f8de576698d01ce062d6fc17490acc (patch)
treed3e441ba4ab84d134559a14e8be66a63f2cfc0b4 /ext/pgsql/pgsql.c
parent260aee10fed14e3649a10077359bf59c468506bf (diff)
downloadphp-git-c1507e1e40f8de576698d01ce062d6fc17490acc.tar.gz
Initialize automatic persistent connection reset flag
Diffstat (limited to 'ext/pgsql/pgsql.c')
-rw-r--r--ext/pgsql/pgsql.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c
index 1db41aea6a..4ed4046844 100644
--- a/ext/pgsql/pgsql.c
+++ b/ext/pgsql/pgsql.c
@@ -302,6 +302,7 @@ static void php_pgsql_init_globals(php_pgsql_globals *pgsql_globals_p TSRMLS_DC)
{
PGG(num_persistent) = 0;
PGG(ignore_notices) = 0;
+ PGG(auto_reset_persistent) = 0;
}
/* }}} */