Fix error message in pg_verify_checksums
authorMichael Paquier
Mon, 18 Mar 2019 23:53:04 +0000 (08:53 +0900)
committerMichael Paquier
Mon, 18 Mar 2019 23:53:04 +0000 (08:53 +0900)
5864d24 has introduced a new error message, and I somewhat managed to
fail adapting the back-patched version correctly with the tool name.

src/bin/pg_verify_checksums/pg_verify_checksums.c

index 3ab0170977b2607f373c5a3f9b591f2d4bfab07d..7d9c2774277ec194d88d18bc6d00e2aec0e0d544 100644 (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);
    }