diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-10-16 03:10:17 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-10-16 03:10:17 +0000 |
commit | 88fd162ef64cab7ed197f0612e0b610d57007200 (patch) | |
tree | 7ea088e7cef6a6848508fe9629c55819a200b399 /src/interfaces/libpq/fe-auth.c | |
parent | 9ffc8ed58b55cb3925bb95cc184583fcb9772013 (diff) | |
download | postgresql-88fd162ef64cab7ed197f0612e0b610d57007200.tar.gz postgresql-88fd162ef64cab7ed197f0612e0b610d57007200.zip |
Allow pg_ctl to determine the server is up when getting a request for a
password.
Make password error message a #define and use it consistently.
Sean Chittenden
Diffstat (limited to 'src/interfaces/libpq/fe-auth.c')
-rw-r--r-- | src/interfaces/libpq/fe-auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-auth.c b/src/interfaces/libpq/fe-auth.c index 17862a0c807..84477563ef5 100644 --- a/src/interfaces/libpq/fe-auth.c +++ b/src/interfaces/libpq/fe-auth.c @@ -10,7 +10,7 @@ * exceed INITIAL_EXPBUFFER_SIZE (currently 256 bytes). * * IDENTIFICATION - * $PostgreSQL: pgsql/src/interfaces/libpq/fe-auth.c,v 1.93 2004/09/28 00:06:02 momjian Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/fe-auth.c,v 1.94 2004/10/16 03:10:17 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -634,7 +634,7 @@ fe_sendauth(AuthRequest areq, PGconn *conn, const char *hostname, if (password == NULL || *password == '\0') { (void) snprintf(PQerrormsg, PQERRORMSG_LENGTH, - "fe_sendauth: no password supplied\n"); + PQnoPasswordSupplied); return STATUS_ERROR; } if (pg_password_sendauth(conn, password, areq) != STATUS_OK) |