diff --git a/src/restic/checker/checker.go b/src/restic/checker/checker.go index 8366cb6fe..4bd3303ba 100644 --- a/src/restic/checker/checker.go +++ b/src/restic/checker/checker.go @@ -608,6 +608,9 @@ func (c *Checker) checkTree(id backend.ID, tree *restic.Tree) (errs []error) { continue } + case "symlink": + // nothing to check + default: errs = append(errs, Error{TreeID: id, Err: fmt.Errorf("node %q with invalid type %q", node.Name, node.Type)}) }