diff options
Diffstat (limited to 'src/backend/libpq/auth.c')
-rw-r--r-- | src/backend/libpq/auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/libpq/auth.c b/src/backend/libpq/auth.c index 78e1ef3e6da..a317aef1c92 100644 --- a/src/backend/libpq/auth.c +++ b/src/backend/libpq/auth.c @@ -357,8 +357,8 @@ set_authn_id(Port *port, const char *id) * connection continue, either. */ ereport(FATAL, - (errmsg("connection was re-authenticated"), - errdetail_log("previous ID: \"%s\"; new ID: \"%s\"", + (errmsg("authentication identifier set more than once"), + errdetail_log("previous identifier: \"%s\"; new identifier: \"%s\"", port->authn_id, id))); } |