aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/fe-auth.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2007-09-25 16:29:34 +0000
committerPeter Eisentraut <peter_e@gmx.net>2007-09-25 16:29:34 +0000
commit588901df84588981aabf40df3287219405ec443b (patch)
treecfc90622af633ee1882b402e0c582bce08d4a487 /src/interfaces/libpq/fe-auth.c
parente5b5739a2d8da002d1e4c1795997b6d92d21f588 (diff)
downloadpostgresql-588901df84588981aabf40df3287219405ec443b.tar.gz
postgresql-588901df84588981aabf40df3287219405ec443b.zip
Small string tweaks
Diffstat (limited to 'src/interfaces/libpq/fe-auth.c')
-rw-r--r--src/interfaces/libpq/fe-auth.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/libpq/fe-auth.c b/src/interfaces/libpq/fe-auth.c
index 43a183df394..69ec74c4c03 100644
--- a/src/interfaces/libpq/fe-auth.c
+++ b/src/interfaces/libpq/fe-auth.c
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/interfaces/libpq/fe-auth.c,v 1.131 2007/07/24 09:00:27 mha Exp $
+ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-auth.c,v 1.132 2007/09/25 16:29:34 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -464,7 +464,7 @@ pg_GSS_startup(PGconn *conn)
if (conn->gctx)
{
printfPQExpBuffer(&conn->errorMessage,
- libpq_gettext("duplicate GSS auth request\n"));
+ libpq_gettext("duplicate GSS authentication request\n"));
return STATUS_ERROR;
}
@@ -666,7 +666,7 @@ pg_SSPI_startup(PGconn *conn, int use_negotiate)
*/
if (conn->pghost == NULL)
{
- printfPQExpBuffer(&conn->errorMessage, libpq_gettext("hostname must be specified\n"));
+ printfPQExpBuffer(&conn->errorMessage, libpq_gettext("host name must be specified\n"));
return STATUS_ERROR;
}
conn->sspitarget = malloc(strlen(conn->krbsrvname)+strlen(conn->pghost)+2);