mirror of
https://github.com/postgres/postgres.git
synced 2025-05-31 00:01:57 -04:00
Fix poorly worded error message.
Adam Brightwell, per report from Martín Marqués.
This commit is contained in:
parent
cef0ae498c
commit
c977b8cffc
@ -1590,8 +1590,9 @@ auth_peer(hbaPort *port)
|
||||
if (!pw)
|
||||
{
|
||||
ereport(LOG,
|
||||
(errmsg("could not to look up local user ID %ld: %s",
|
||||
(long) uid, errno ? strerror(errno) : _("user does not exist"))));
|
||||
(errmsg("could not look up local user ID %ld: %s",
|
||||
(long) uid,
|
||||
errno ? strerror(errno) : _("user does not exist"))));
|
||||
return STATUS_ERROR;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user