diff options
Diffstat (limited to 'src/bin/pg_basebackup/streamutil.c')
-rw-r--r-- | src/bin/pg_basebackup/streamutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/streamutil.c b/src/bin/pg_basebackup/streamutil.c index 919ec9c29c2..4ccb90c197e 100644 --- a/src/bin/pg_basebackup/streamutil.c +++ b/src/bin/pg_basebackup/streamutil.c @@ -519,7 +519,7 @@ GetSlotInformation(PGconn *conn, const char *slot_name, */ if (PQgetisnull(res, 0, 0)) { - pg_log_error("could not find replication slot \"%s\"", slot_name); + pg_log_error("replication slot \"%s\" does not exist", slot_name); PQclear(res); return false; } |