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:42:00 -0400
commitcdcae2b6a7d263b2771b6386af626b47ce17da19 (patch)
tree89a1215e4319afa2270c34d704c7e532b3479902 /src/bin/pg_rewind/timeline.c
parent87c2b517accf287cb746b58af570e7a29b5ad26a (diff)
downloadpostgresql-cdcae2b6a7d263b2771b6386af626b47ce17da19.tar.gz
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 752623058e..e734310505 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)