diff options
Diffstat (limited to 'src/bin/pg_rewind/pg_rewind.c')
-rw-r--r-- | src/bin/pg_rewind/pg_rewind.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/pg_rewind/pg_rewind.c b/src/bin/pg_rewind/pg_rewind.c index 4b7e26aac18..a2d9ca36aa1 100644 --- a/src/bin/pg_rewind/pg_rewind.c +++ b/src/bin/pg_rewind/pg_rewind.c @@ -215,7 +215,7 @@ main(int argc, char **argv) pg_fatal("source and target cluster are on the same timeline\n"); findCommonAncestorTimeline(&divergerec, &lastcommontli); - printf(_("The servers diverged at WAL position %X/%X on timeline %u.\n"), + printf(_("servers diverged at WAL position %X/%X on timeline %u\n"), (uint32) (divergerec >> 32), (uint32) divergerec, lastcommontli); /* @@ -250,13 +250,13 @@ main(int argc, char **argv) if (!rewind_needed) { - printf(_("No rewind required.\n")); + printf(_("no rewind required\n")); exit(0); } findLastCheckpoint(datadir_target, divergerec, lastcommontli, &chkptrec, &chkpttli, &chkptredo); - printf(_("Rewinding from last common checkpoint at %X/%X on timeline %u\n"), + printf(_("rewinding from last common checkpoint at %X/%X on timeline %u\n"), (uint32) (chkptrec >> 32), (uint32) chkptrec, chkpttli); |