summaryrefslogtreecommitdiff
path: root/src/bin/pg_rewind/timeline.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2015-10-01 21:42:00 -0400
committerPeter Eisentraut <peter_e@gmx.net>2015-10-01 21:52:46 -0400
commit0f51a848ab98325e497a227155648facd9d0cf9b (patch)
tree864d405b5691547698957bf02e0ac31add8fb4d3 /src/bin/pg_rewind/timeline.c
parent867bc6849f141e17cd4d3b416f48cc46839f2d76 (diff)
pg_rewind: Improve some messages
The output of a typical pg_rewind run contained a mix of capitalized and not-capitalized and punctuated and not-punctuated phrases for no apparent reason. Make that consistent. Also fix some problems in other messages.
Diffstat (limited to 'src/bin/pg_rewind/timeline.c')
-rw-r--r--src/bin/pg_rewind/timeline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_rewind/timeline.c b/src/bin/pg_rewind/timeline.c
index 752623058ec..e734310505e 100644
--- a/src/bin/pg_rewind/timeline.c
+++ b/src/bin/pg_rewind/timeline.c
@@ -80,7 +80,7 @@ rewind_parseTimeLineHistory(char *buffer, TimeLineID targetTLI, int *nentries)
if (nfields != 3)
{
fprintf(stderr, _("syntax error in history file: %s\n"), fline);
- fprintf(stderr, _("Expected an XLOG switchpoint location.\n"));
+ fprintf(stderr, _("Expected a transaction log switchpoint location.\n"));
exit(1);
}
if (entries && tli <= lasttli)