Skip to content

Commit 45cd919

Browse files
Fix bug in comment of timeline history file.
Fujii Masao
1 parent 816b008 commit 45cd919

File tree

1 file changed

+1
-1
lines changed
  • src/backend/access/transam

1 file changed

+1
-1
lines changed

src/backend/access/transam/xlog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4369,7 +4369,7 @@ writeTimeLineHistory(TimeLineID newTLI, TimeLineID parentTLI,
43694369
xlogfname,
43704370
recoveryStopAfter ? "after" : "before",
43714371
recoveryStopXid);
4372-
if (recoveryTarget == RECOVERY_TARGET_TIME)
4372+
else if (recoveryTarget == RECOVERY_TARGET_TIME)
43734373
snprintf(buffer, sizeof(buffer),
43744374
"%s%u\t%s\t%s %s\n",
43754375
(srcfd < 0) ? "" : "\n",

0 commit comments

Comments
 (0)