From: Tom Lane Date: Wed, 17 Dec 2014 18:14:57 +0000 (-0500) Subject: Fix poorly worded error message. X-Git-Tag: REL9_4_1~95 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=022d954925d73490f9771cdded16af3e94f27ec0;p=thirdparty%2Fpostgresql.git 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 213c5833308..09491fd5089 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; }