aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/pqexpbuffer.h
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2007-07-23 17:52:06 +0000
committerMagnus Hagander <magnus@hagander.net>2007-07-23 17:52:06 +0000
commit29ac718f476bef2690a8af2923e9d931ce6fb2c9 (patch)
treefe1a9479a0c46ea51e346c77d206abc996d430ec /src/interfaces/libpq/pqexpbuffer.h
parentaa81c558ee5293fef96aa4049cd5a4d9da90954e (diff)
downloadpostgresql-29ac718f476bef2690a8af2923e9d931ce6fb2c9.tar.gz
postgresql-29ac718f476bef2690a8af2923e9d931ce6fb2c9.zip
Use PQExpBuffer for error message in fe-auth.c.
In passing, change functions that passedin both PGconn and parts of it to just pass in the PGconn.
Diffstat (limited to 'src/interfaces/libpq/pqexpbuffer.h')
-rw-r--r--src/interfaces/libpq/pqexpbuffer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/pqexpbuffer.h b/src/interfaces/libpq/pqexpbuffer.h
index 27803ae021c..9dad32e92ab 100644
--- a/src/interfaces/libpq/pqexpbuffer.h
+++ b/src/interfaces/libpq/pqexpbuffer.h
@@ -18,7 +18,7 @@
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/interfaces/libpq/pqexpbuffer.h,v 1.17 2007/01/05 22:20:01 momjian Exp $
+ * $PostgreSQL: pgsql/src/interfaces/libpq/pqexpbuffer.h,v 1.18 2007/07/23 17:52:06 mha Exp $
*
*-------------------------------------------------------------------------
*/
@@ -49,7 +49,7 @@ typedef PQExpBufferData *PQExpBuffer;
/*------------------------
* Initial size of the data buffer in a PQExpBuffer.
* NB: this must be large enough to hold error messages that might
- * be returned by PQrequestCancel() or any routine in fe-auth.c.
+ * be returned by PQrequestCancel().
*------------------------
*/
#define INITIAL_EXPBUFFER_SIZE 256