summaryrefslogtreecommitdiff
path: root/ext/pdo_pgsql/pgsql_statement.c
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2009-05-25 19:41:41 +0000
committerKalle Sommer Nielsen <kalle@php.net>2009-05-25 19:41:41 +0000
commit3e6435e3c4db313702a339ea7366adccd48966a7 (patch)
tree2348fd50e464b50d75ad22977d099c402ad81cd3 /ext/pdo_pgsql/pgsql_statement.c
parenta42f47071f591ae84e76607cb37f2a73464789ba (diff)
downloadphp-git-3e6435e3c4db313702a339ea7366adccd48966a7.tar.gz
MFH: Typo
Diffstat (limited to 'ext/pdo_pgsql/pgsql_statement.c')
-rw-r--r--ext/pdo_pgsql/pgsql_statement.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_pgsql/pgsql_statement.c b/ext/pdo_pgsql/pgsql_statement.c
index 0916fe9128..a891069881 100644
--- a/ext/pdo_pgsql/pgsql_statement.c
+++ b/ext/pdo_pgsql/pgsql_statement.c
@@ -152,7 +152,7 @@ stmt_retry:
char *sqlstate = pdo_pgsql_sqlstate(S->result);
/* 42P05 means that the prepared statement already existed. this can happen if you use
* a connection pooling software line pgpool which doesn't close the db-connection once
- * php disconnects. if php dies (no chanche to run RSHUTDOWN) during execution it has no
+ * php disconnects. if php dies (no chance to run RSHUTDOWN) during execution it has no
* chance to DEALLOCATE the prepared statements it has created. so, if we hit a 42P05 we
* deallocate it and retry ONCE (thies 2005.12.15)
*/