2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-26 12:32:36 +00:00

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

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" { if node.Type == "file" || node.Type == "symlink" || node.Type == "dir" {
err := tarNode(ctx, tw, node, repo) err := tarNode(ctx, tw, node, repo)
if err != err { if err != nil {
return false, err return false, err
} }
} }