summaryrefslogtreecommitdiff
path: root/src/bin/pg_rewind/timeline.c
diff options
context:
space:
mode:
authorPeter Eisentraut2017-05-12 15:49:56 +0000
committerPeter Eisentraut2017-05-12 15:52:43 +0000
commitc1a7f64b4a720a662ecec809bc9e289f35e887ad (patch)
tree4846174161b5302d7f0298e98620794a21388de1 /src/bin/pg_rewind/timeline.c
parent56b6ef893fee9e9bf47d927a02f4d1ea911f4d9c (diff)
Replace "transaction log" with "write-ahead log"
This makes documentation and error messages match the renaming of "xlog" to "wal" in APIs and file naming.
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 f1a792ff6b2..3cd5af57f2a 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 a transaction log switchpoint location.\n"));
+ fprintf(stderr, _("Expected a write-ahead log switchpoint location.\n"));
exit(1);
}
if (entries && tli <= lasttli)