diff --git a/src/bin/pg_basebackup/streamutil.c b/src/bin/pg_basebackup/streamutil.c index 933091ff1f..8ef133d119 100644 --- a/src/bin/pg_basebackup/streamutil.c +++ b/src/bin/pg_basebackup/streamutil.c @@ -222,7 +222,7 @@ GetConnection(void) res = PQexec(tmpconn, ALWAYS_SECURE_SEARCH_PATH_SQL); if (PQresultStatus(res) != PGRES_TUPLES_OK) { - fprintf(stderr, _("%s: could not clear search_path: %s\n"), + fprintf(stderr, _("%s: could not clear search_path: %s"), progname, PQerrorMessage(tmpconn)); PQclear(res); PQfinish(tmpconn); diff --git a/src/bin/pg_dump/pg_dumpall.c b/src/bin/pg_dump/pg_dumpall.c index 3554f51ec5..75d0d9727c 100644 --- a/src/bin/pg_dump/pg_dumpall.c +++ b/src/bin/pg_dump/pg_dumpall.c @@ -2028,7 +2028,7 @@ connectDatabase(const char *dbname, const char *connection_string, if (fail_on_error) { fprintf(stderr, - _("%s: could not connect to database \"%s\": %s\n"), + _("%s: could not connect to database \"%s\": %s"), progname, dbname, PQerrorMessage(conn)); exit_nicely(1); }