aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2019-03-19 08:53:04 +0900
committerMichael Paquier <michael@paquier.xyz>2019-03-19 08:53:04 +0900
commit31eb62d55ed97f9879f0bc0df2ba5c03dd76b0a6 (patch)
tree36ed6f6b108c3e79c3011476722af68d4d24c23a /src
parentadf27de8eabbf43b049d1a1bb72780e53e8ea863 (diff)
downloadpostgresql-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.c2
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);
}