mirror of
https://github.com/postgres/postgres.git
synced 2025-06-23 14:01:44 +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"),
|
||||
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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user