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

Commit 542d04e

Browse files
committed
correct capitalization
1 parent 8fb93b7 commit 542d04e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/libpq/auth.c

Lines changed: 2 additions & 2 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.159 2007/11/15 21:14:35 momjian Exp $
11+
* $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.160 2007/11/27 12:17:27 petere Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -607,7 +607,7 @@ pg_SSPI_error(int severity, char *errmsg, SECURITY_STATUS r)
607607
if (FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, r, 0, sysmsg, sizeof(sysmsg), NULL) == 0)
608608
ereport(severity,
609609
(errmsg_internal("%s", errmsg),
610-
errdetail("sspi error %x", (unsigned int) r)));
610+
errdetail("SSPI error %x", (unsigned int) r)));
611611
else
612612
ereport(severity,
613613
(errmsg_internal("%s", errmsg),

0 commit comments

Comments
 (0)