Merge pull request #594 from restic/fix-checker

Remove check for filemode 0
This commit is contained in:
Alexander Neumann 2016-08-28 21:09:02 +02:00
commit 26351522c5
1 changed files with 0 additions and 4 deletions

View File

@ -586,10 +586,6 @@ func (c *Checker) checkTree(id backend.ID, tree *restic.Tree) (errs []error) {
errs = append(errs, Error{TreeID: id, Err: fmt.Errorf("file %q has nil blob list", node.Name)})
}
if node.Mode == 0 {
errs = append(errs, Error{TreeID: id, Err: fmt.Errorf("file %q has invalid mode: %v", node.Name, node.Mode)})
}
for b, blobID := range node.Content {
if blobID.IsNull() {
errs = append(errs, Error{TreeID: id, Err: fmt.Errorf("file %q blob %d has null ID", node.Name, b)})