8000 Message tuning · postgrespro/postgres_cluster@89474cc · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 89474cc

Browse files
committed
Message tuning
1 parent a3401be commit 89474cc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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.201 2010/05/26 20:47:13 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.202 2010/06/29 04:12:47 petere Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -2506,7 +2506,7 @@ CheckCertAuth(Port *port)
25062506
strlen(port->peer_cn) <= 0)
25072507
{
25082508
ereport(LOG,
2509-
(errmsg("certificate authentication failed for user \"%s\": client certificate contains no username",
2509+
(errmsg("certificate authentication failed for user \"%s\": client certificate contains no user name",
25102510
port->user_name)));
25112511
return STATUS_ERROR;
25122512
}

src/pl/plperl/plperl.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**********************************************************************
22
* plperl.c - perl as a procedural language for PostgreSQL
33
*
4-
* $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.177 2010/06/16 14:50:34 adunstan Exp $
4+
* $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.178 2010/06/29 04:12:47 petere Exp $
55
*
66
**********************************************************************/
77

@@ -1316,7 +1316,7 @@ plperl_create_sub(plperl_proc_desc *prodesc, char *s, Oid fn_oid)
13161316

13171317
if (!subref)
13181318
ereport(ERROR,
1319-
(errmsg("didn't get a CODE ref from compiling %s",
1319+
(errmsg("didn't get a CODE reference from compiling function \"%s\"",
13201320
prodesc->proname)));
13211321

13221322
prodesc->reference = subref;

0 commit comments

Comments
 (0)

Footer

© 2025 GitHub, Inc.
0