Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1513dbe

Browse files
committed
Add missing progname prefix to some messages
Author: Michael Banck
1 parent 51e26c9 commit 1513dbe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/bin/pg_basebackup/pg_basebackup.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1814,8 +1814,8 @@ BaseBackup(void)
18141814
MemSet(xlogend, 0, sizeof(xlogend));
18151815

18161816
if (verbose && includewal != NO_WAL)
1817-
fprintf(stderr, _("transaction log start point: %s on timeline %u\n"),
1818-
xlogstart, starttli);
1817+
fprintf(stderr, _("%s: transaction log start point: %s on timeline %u\n"),
1818+
progname, xlogstart, starttli);
18191819

18201820
/*
18211821
* Get the header
@@ -1917,7 +1917,7 @@ BaseBackup(void)
19171917
}
19181918
strlcpy(xlogend, PQgetvalue(res, 0, 0), sizeof(xlogend));
19191919
if (verbose && includewal != NO_WAL)
1920-
fprintf(stderr, "transaction log end point: %s\n", xlogend);
1920+
fprintf(stderr, _("%s: transaction log end point: %s\n"), progname, xlogend);
19211921
PQclear(res);
19221922

19231923
res = PQgetResult(conn);
@@ -2058,7 +2058,7 @@ BaseBackup(void)
20582058
}
20592059

20602060
if (verbose)
2061-
fprintf(stderr, "%s: base backup completed\n", progname);
2061+
fprintf(stderr, _("%s: base backup completed\n"), progname);
20622062
}
20632063

20642064

0 commit comments

Comments
 (0)