Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 166f67c

Browse files
committed
Message improvements
1 parent e2776a0 commit 166f67c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/backend/libpq/auth.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.157 2007/11/09 17:31:07 mha Exp $
11+
* $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.158 2007/11/15 20:04:38 petere Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -585,7 +585,7 @@ pg_GSS_recvauth(Port *port)
585585
{
586586
ereport(LOG,
587587
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
588-
errmsg("GSSAPI not implemented on this server.")));
588+
errmsg("GSSAPI not implemented on this server")));
589589
return STATUS_ERROR;
590590
}
591591
#endif /* ENABLE_GSS */
@@ -868,7 +868,7 @@ pg_SSPI_recvauth(Port *port)
868868
{
869869
ereport(LOG,
870870
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
871-
errmsg("SSPI not implemented on this server.")));
871+
errmsg("SSPI not implemented on this server")));
872872
return STATUS_ERROR;
873873
}
874874
#endif /* ENABLE_SSPI */

src/backend/postmaster/postmaster.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
*
3838
*
3939
* IDENTIFICATION
40-
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.545 2007/11/08 14:47:51 petere Exp $
40+
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.546 2007/11/15 20:04:38 petere Exp $
4141
*
4242
* NOTES
4343
*
@@ -4524,7 +4524,7 @@ pgwin32_deadchild_callback(PVOID lpParameter, BOOLEAN TimerOrWaitFired)
45244524
/*
45254525
* Should never happen. Inform user and set a fixed exitcode.
45264526
*/
4527-
write_stderr("could not read exitcode for process\n");
4527+
write_stderr("could not read exit code for process\n");
45284528
exitcode = 255;
45294529
}
45304530

0 commit comments

Comments
 (0)