Skip to content

Commit 0855785

Browse files
committed
fix error
During refactoring base36enc it were mistakenly changed from current_backup->start_time to current_backup->parent_backup
1 parent 4c09deb commit 0855785

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/validate.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ do_validate_instance(InstanceState *instanceState)
508508
/* determine missing backup ID */
509509

510510
parent_backup_id = base36enc(tmp_backup->parent_backup);
511-
current_backup_id = base36enc(current_backup->parent_backup);
511+
current_backup_id = backup_id_of(current_backup);
512512
corrupted_backup_found = true;
513513

514514
/* orphanize current_backup */

0 commit comments

Comments
 (0)