Message improvements

This commit is contained in:
Peter Eisentraut 2007-11-15 20:04:38 +00:00
parent e2776a0820
commit 166f67cebe
2 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.157 2007/11/09 17:31:07 mha Exp $ * $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.158 2007/11/15 20:04:38 petere Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -585,7 +585,7 @@ pg_GSS_recvauth(Port *port)
{ {
ereport(LOG, ereport(LOG,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED), (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("GSSAPI not implemented on this server."))); errmsg("GSSAPI not implemented on this server")));
return STATUS_ERROR; return STATUS_ERROR;
} }
#endif /* ENABLE_GSS */ #endif /* ENABLE_GSS */
@ -868,7 +868,7 @@ pg_SSPI_recvauth(Port *port)
{ {
ereport(LOG, ereport(LOG,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED), (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("SSPI not implemented on this server."))); errmsg("SSPI not implemented on this server")));
return STATUS_ERROR; return STATUS_ERROR;
} }
#endif /* ENABLE_SSPI */ #endif /* ENABLE_SSPI */

View File

@ -37,7 +37,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.545 2007/11/08 14:47:51 petere Exp $ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.546 2007/11/15 20:04:38 petere Exp $
* *
* NOTES * NOTES
* *
@ -4524,7 +4524,7 @@ pgwin32_deadchild_callback(PVOID lpParameter, BOOLEAN TimerOrWaitFired)
/* /*
* Should never happen. Inform user and set a fixed exitcode. * Should never happen. Inform user and set a fixed exitcode.
*/ */
write_stderr("could not read exitcode for process\n"); write_stderr("could not read exit code for process\n");
exitcode = 255; exitcode = 255;
} }