Fix error message in pg_verify_checksums

5864d24 has introduced a new error message, and I somewhat managed to
fail adapting the back-patched version correctly with the tool name.
This commit is contained in:
Michael Paquier 2019-03-19 08:53:04 +09:00
parent adf27de8ea
commit 31eb62d55e

View File

@ -327,7 +327,7 @@ main(int argc, char *argv[])
{
fprintf(stderr, _("%s: database cluster is not compatible.\n"),
progname);
fprintf(stderr, _("The database cluster was initialized with block size %u, but pg_checksums was compiled with block size %u.\n"),
fprintf(stderr, _("The database cluster was initialized with block size %u, but pg_verify_checksums was compiled with block size %u.\n"),
ControlFile->blcksz, BLCKSZ);
exit(1);
}