diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2011-03-30 08:54:28 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2011-03-30 08:54:28 +0300 |
commit | bc03c5937d103952ef4f40a3fa4514c154538d25 (patch) | |
tree | 7b28aa0988aa41cce91d52d34a670c57049015f1 /src/interfaces/libpq/fe-exec.c | |
parent | f564e65cda32fd14f6f7cdd85d116c421af731f2 (diff) | |
download | postgresql-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.c | 2 |
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. */ |