aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/fe-exec.c
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2011-03-30 08:54:28 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2011-03-30 08:54:28 +0300
commitbc03c5937d103952ef4f40a3fa4514c154538d25 (patch)
tree7b28aa0988aa41cce91d52d34a670c57049015f1 /src/interfaces/libpq/fe-exec.c
parentf564e65cda32fd14f6f7cdd85d116c421af731f2 (diff)
downloadpostgresql-bc03c5937d103952ef4f40a3fa4514c154538d25.tar.gz
postgresql-bc03c5937d103952ef4f40a3fa4514c154538d25.zip
Adjust error message, now that we expect other message types than connection
close at this point. Fix PQsetnonblocking() comment. Fujii Masao
Diffstat (limited to 'src/interfaces/libpq/fe-exec.c')
-rw-r--r--src/interfaces/libpq/fe-exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-exec.c b/src/interfaces/libpq/fe-exec.c
index dcdb1a93514..42da1a8f905 100644
--- a/src/interfaces/libpq/fe-exec.c
+++ b/src/interfaces/libpq/fe-exec.c
@@ -2869,7 +2869,7 @@ PQparamtype(const PGresult *res, int param_num)
/* PQsetnonblocking:
* sets the PGconn's database connection non-blocking if the arg is TRUE
- * or makes it non-blocking if the arg is FALSE, this will not protect
+ * or makes it blocking if the arg is FALSE, this will not protect
* you from PQexec(), you'll only be safe when using the non-blocking API.
* Needs to be called only on a connected database connection.
*/