2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-29 07:00:49 +00:00

check: fix missing error if blob is invalid

This commit is contained in:
Michael Eischer 2024-02-04 17:22:09 +01:00
parent 6397615fbb
commit 4073299a7c

View File

@ -563,8 +563,8 @@ func checkPack(ctx context.Context, r restic.Repository, id restic.ID, blobs []r
} }
debug.Log(" check blob %v: %v", val.Handle.ID, val.Handle) debug.Log(" check blob %v: %v", val.Handle.ID, val.Handle)
if val.Err != nil { if val.Err != nil {
debug.Log(" error verifying blob %v: %v", val.Handle.ID, err) debug.Log(" error verifying blob %v: %v", val.Handle.ID, val.Err)
errs = append(errs, errors.Errorf("blob %v: %v", val.Handle.ID, err)) errs = append(errs, errors.Errorf("blob %v: %v", val.Handle.ID, val.Err))
} }
} }