Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 31eb62d

Browse files
committed
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.
1 parent adf27de commit 31eb62d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_verify_checksums/pg_verify_checksums.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ main(int argc, char *argv[])
327327
{
328328
fprintf(stderr, _("%s: database cluster is not compatible.\n"),
329329
progname);
330-
fprintf(stderr, _("The database cluster was initialized with block size %u, but pg_checksums was compiled with block size %u.\n"),
330+
fprintf(stderr, _("The database cluster was initialized with block size %u, but pg_verify_checksums was compiled with block size %u.\n"),
331331
ControlFile->blcksz, BLCKSZ);
332332
exit(1);
333333
}

0 commit comments

Comments
 (0)