mirror of
https://github.com/postgres/postgres.git
synced 2025-08-09 17:03:00 +03:00
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:
@@ -327,7 +327,7 @@ main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
fprintf(stderr, _("%s: database cluster is not compatible.\n"),
|
fprintf(stderr, _("%s: database cluster is not compatible.\n"),
|
||||||
progname);
|
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);
|
ControlFile->blcksz, BLCKSZ);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user