diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-03-19 08:53:04 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-03-19 08:53:04 +0900 |
commit | 31eb62d55ed97f9879f0bc0df2ba5c03dd76b0a6 (patch) | |
tree | 36ed6f6b108c3e79c3011476722af68d4d24c23a /src | |
parent | adf27de8eabbf43b049d1a1bb72780e53e8ea863 (diff) | |
download | postgresql-31eb62d55ed97f9879f0bc0df2ba5c03dd76b0a6.tar.gz postgresql-31eb62d55ed97f9879f0bc0df2ba5c03dd76b0a6.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_verify_checksums/pg_verify_checksums.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_verify_checksums/pg_verify_checksums.c b/src/bin/pg_verify_checksums/pg_verify_checksums.c index 3ab0170977b..7d9c2774277 100644 --- a/src/bin/pg_verify_checksums/pg_verify_checksums.c +++ b/src/bin/pg_verify_checksums/pg_verify_checksums.c @@ -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); } |