Merge pull request #514 from viric/fix_parent_search

Better backup parent snapshot search. Part of #513
This commit is contained in:
Alexander Neumann 2016-05-09 22:10:32 +02:00
commit cb75737770
1 changed files with 8 additions and 4 deletions

View File

@ -180,11 +180,15 @@ func samePaths(expected, actual []string) bool {
return true
}
if len(expected) != len(actual) {
return false
}
for i := range expected {
if expected[i] != actual[i] {
found := false
for j := range actual {
if expected[i] == actual[j] {
found = true
break
}
}
if !found {
return false
}
}