2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 22:50:48 +00:00

Store reference to reject function for insensitive pattern rejection

This commit is contained in:
Johannes Hertenstein 2019-01-19 11:08:13 +00:00
parent deedc38129
commit cdc287a7f6

View File

@ -93,8 +93,10 @@ func rejectByInsensitivePattern(patterns []string) RejectByNameFunc {
for index, path := range patterns {
patterns[index] = strings.ToLower(path)
}
rejFunc := rejectByPattern(patterns)
return func(item string) bool {
return rejectByPattern(patterns)(strings.ToLower(item))
return rejFunc(strings.ToLower(item))
}
}