Skip to content

Commit 392e01a

Browse files
Fix bug in comment of timeline history file.
Fujii Masao
1 parent 86d4cc4 commit 392e01a

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
@@ -4361,7 +4361,7 @@ writeTimeLineHistory(TimeLineID newTLI, TimeLineID parentTLI,
43614361
xlogfname,
43624362
recoveryStopAfter ? "after" : "before",
43634363
recoveryStopXid);
4364-
if (recoveryTarget == RECOVERY_TARGET_TIME)
4364+
else if (recoveryTarget == RECOVERY_TARGET_TIME)
43654365
snprintf(buffer, sizeof(buffer),
43664366
"%s%u\t%s\t%s %s\n",
43674367
(srcfd < 0) ? "" : "\n",

0 commit comments

Comments
 (0)