Commit 89474cc3 authored by Peter Eisentraut's avatar Peter Eisentraut

Message tuning

parent a3401bea
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.201 2010/05/26 20:47:13 tgl Exp $ * $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.202 2010/06/29 04:12:47 petere Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -2506,7 +2506,7 @@ CheckCertAuth(Port *port) ...@@ -2506,7 +2506,7 @@ CheckCertAuth(Port *port)
strlen(port->peer_cn) <= 0) strlen(port->peer_cn) <= 0)
{ {
ereport(LOG, ereport(LOG,
(errmsg("certificate authentication failed for user \"%s\": client certificate contains no username", (errmsg("certificate authentication failed for user \"%s\": client certificate contains no user name",
port->user_name))); port->user_name)));
return STATUS_ERROR; return STATUS_ERROR;
} }
......
/********************************************************************** /**********************************************************************
* plperl.c - perl as a procedural language for PostgreSQL * plperl.c - perl as a procedural language for PostgreSQL
* *
* $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.177 2010/06/16 14:50:34 adunstan Exp $ * $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.178 2010/06/29 04:12:47 petere Exp $
* *
**********************************************************************/ **********************************************************************/
...@@ -1316,7 +1316,7 @@ plperl_create_sub(plperl_proc_desc *prodesc, char *s, Oid fn_oid) ...@@ -1316,7 +1316,7 @@ plperl_create_sub(plperl_proc_desc *prodesc, char *s, Oid fn_oid)
if (!subref) if (!subref)
ereport(ERROR, ereport(ERROR,
(errmsg("didn't get a CODE ref from compiling %s", (errmsg("didn't get a CODE reference from compiling function \"%s\"",
prodesc->proname))); prodesc->proname)));
prodesc->reference = subref; prodesc->reference = subref;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment