Skip to content

Commit c926ae9

Browse files
committed
print correct stop_lsn after execution of pg_stop_backup()
1 parent 889465b commit c926ae9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backup.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1865,7 +1865,7 @@ pg_stop_backup(pgBackup *backup, PGconn *pg_startbackup_conn,
18651865
}
18661866

18671867
elog(LOG, "stop_lsn: %X/%X",
1868-
(uint32) (stop_backup_lsn >> 32), (uint32) (stop_backup_lsn));
1868+
(uint32) (stop_backup_lsn_tmp >> 32), (uint32) (stop_backup_lsn_tmp));
18691869

18701870
/* Write backup_label and tablespace_map */
18711871
if (!exclusive_backup)

0 commit comments

Comments
 (0)