mirror of
https://github.com/postgres/postgres.git
synced 2025-04-24 10:47:04 +03:00
Add missing progname prefix to some messages
Author: Michael Banck
This commit is contained in:
parent
51e26c9c3d
commit
1513dbea7f
@ -1814,8 +1814,8 @@ BaseBackup(void)
|
|||||||
MemSet(xlogend, 0, sizeof(xlogend));
|
MemSet(xlogend, 0, sizeof(xlogend));
|
||||||
|
|
||||||
if (verbose && includewal != NO_WAL)
|
if (verbose && includewal != NO_WAL)
|
||||||
fprintf(stderr, _("transaction log start point: %s on timeline %u\n"),
|
fprintf(stderr, _("%s: transaction log start point: %s on timeline %u\n"),
|
||||||
xlogstart, starttli);
|
progname, xlogstart, starttli);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Get the header
|
* Get the header
|
||||||
@ -1917,7 +1917,7 @@ BaseBackup(void)
|
|||||||
}
|
}
|
||||||
strlcpy(xlogend, PQgetvalue(res, 0, 0), sizeof(xlogend));
|
strlcpy(xlogend, PQgetvalue(res, 0, 0), sizeof(xlogend));
|
||||||
if (verbose && includewal != NO_WAL)
|
if (verbose && includewal != NO_WAL)
|
||||||
fprintf(stderr, "transaction log end point: %s\n", xlogend);
|
fprintf(stderr, _("%s: transaction log end point: %s\n"), progname, xlogend);
|
||||||
PQclear(res);
|
PQclear(res);
|
||||||
|
|
||||||
res = PQgetResult(conn);
|
res = PQgetResult(conn);
|
||||||
@ -2058,7 +2058,7 @@ BaseBackup(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (verbose)
|
if (verbose)
|
||||||
fprintf(stderr, "%s: base backup completed\n", progname);
|
fprintf(stderr, _("%s: base backup completed\n"), progname);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user