diff options
| author | Tom Lane | 2014-12-17 18:14:57 +0000 |
|---|---|---|
| committer | Tom Lane | 2014-12-17 18:14:57 +0000 |
| commit | 022d954925d73490f9771cdded16af3e94f27ec0 (patch) | |
| tree | fdedcf82c5ea3748f3cbf96aa0f80591d828380e | |
| parent | bf1c1f70c8904f87f791da9efa87643c16f2d159 (diff) | |
Fix poorly worded error message.
Adam Brightwell, per report from Martín Marqués.
| -rw-r--r-- | src/backend/libpq/auth.c | 5 |
1 files changed, 3 insertions, 2 deletions
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; } |
