From: Tom Lane Date: Wed, 17 Dec 2014 18:14:53 +0000 (-0500) Subject: Fix poorly worded error message. X-Git-Tag: REL9_5_ALPHA1~1042 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c977b8cffc76be00fbaab76e3271e05104260ec7;p=postgresql Fix poorly worded error message. Adam Brightwell, per report from Martín Marqués. --- diff --git a/src/backend/libpq/auth.c b/src/backend/libpq/auth.c index 9ad99ceafa..2611115ec5 100644 --- a/src/backend/libpq/auth.c +++ b/src/backend/libpq/auth.c @@ -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; }