Better backup parent snapshot search. Part of #513

I look for the newest snapshot that contains all supplied paths to backup.
This commit is contained in:
Lluís Batlle i Rossell 2016-05-09 12:42:12 +02:00
parent 7572586ded
commit 60c8c90d35
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
}
}