Merge pull request #2864 from greatroar/dump-error

Fix error handling in dump (err != err)
This commit is contained in:
MichaelEischer 2020-08-03 20:09:42 +02:00 committed by GitHub
commit 38a2f9c07b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
}
}