mirror of https://github.com/restic/restic.git
Fix error handling in dump (err != err)
This commit is contained in:
parent
66d089e239
commit
8b358935a0
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue