Skip to content

Commit

Permalink
Merge pull request #545 from restic/fix-528
Browse files Browse the repository at this point in the history
Don't report valid types as invalid
  • Loading branch information
fd0 committed Jul 20, 2016
2 parents b8c7622 + 6b7ddf1 commit e8e45fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/restic/checker/checker.go
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ func (c *Checker) checkTree(id backend.ID, tree *restic.Tree) (errs []error) {
continue
}

case "symlink":
case "symlink", "socket", "chardev", "dev", "fifo":
// nothing to check

default:
Expand Down

0 comments on commit e8e45fe

Please sign in to comment.