mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
This fixes three minor typos in hba.c.
-- Alvaro Herrera (<alvherre[a]dcc.uchile.cl>)
This commit is contained in:
@ -10,7 +10,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.111 2003/08/04 02:39:59 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.112 2003/09/05 03:57:13 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -1292,7 +1292,7 @@ ident_inet(const SockAddr remote_addr,
|
|||||||
{
|
{
|
||||||
ereport(LOG,
|
ereport(LOG,
|
||||||
(errcode_for_socket_access(),
|
(errcode_for_socket_access(),
|
||||||
errmsg("could not connect to IDENT server at address \"%s\", port %s): %m",
|
errmsg("could not connect to IDENT server at address \"%s\", port %s: %m",
|
||||||
remote_addr_s, ident_port)));
|
remote_addr_s, ident_port)));
|
||||||
ident_return = false;
|
ident_return = false;
|
||||||
goto ident_inet_done;
|
goto ident_inet_done;
|
||||||
@ -1312,7 +1312,7 @@ ident_inet(const SockAddr remote_addr,
|
|||||||
{
|
{
|
||||||
ereport(LOG,
|
ereport(LOG,
|
||||||
(errcode_for_socket_access(),
|
(errcode_for_socket_access(),
|
||||||
errmsg("could not send query to IDENT server at address \"%s\", port %s): %m",
|
errmsg("could not send query to IDENT server at address \"%s\", port %s: %m",
|
||||||
remote_addr_s, ident_port)));
|
remote_addr_s, ident_port)));
|
||||||
ident_return = false;
|
ident_return = false;
|
||||||
goto ident_inet_done;
|
goto ident_inet_done;
|
||||||
@ -1327,7 +1327,7 @@ ident_inet(const SockAddr remote_addr,
|
|||||||
{
|
{
|
||||||
ereport(LOG,
|
ereport(LOG,
|
||||||
(errcode_for_socket_access(),
|
(errcode_for_socket_access(),
|
||||||
errmsg("could not receive response from IDENT server at address \"%s\", port %s): %m",
|
errmsg("could not receive response from IDENT server at address \"%s\", port %s: %m",
|
||||||
remote_addr_s, ident_port)));
|
remote_addr_s, ident_port)));
|
||||||
ident_return = false;
|
ident_return = false;
|
||||||
goto ident_inet_done;
|
goto ident_inet_done;
|
||||||
|
Reference in New Issue
Block a user