Commit c977b8cf authored by Tom Lane's avatar Tom Lane

Fix poorly worded error message.

Adam Brightwell, per report from Martín Marqués.
parent cef0ae49
......@@ -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;
}
......
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