Fix error handling in dump (err != err)

This commit is contained in:
greatroar 2020-08-03 09:43:44 +02:00
parent 66d089e239
commit 8b358935a0
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ func tarTree(ctx context.Context, repo restic.Repository, rootNode *restic.Node,
if node.Type == "file" || node.Type == "symlink" || node.Type == "dir" {
err := tarNode(ctx, tw, node, repo)
if err != err {
if err != nil {
return false, err
}
}