mirror of
https://github.com/restic/restic.git
synced 2025-12-20 14:50:55 -05:00
It was only used in two places: - stats: apparently as a minor performance optimization, which is unlikely to be important - find: filtered directories would be ignored. However, this optimization missed that it is possible that two directories have the exact same content. Such directories would be incorrectly ignored too. Example: ``` mkdir test test/a test/b restic backup test restic find latest test/b -> incorrectly does not return anything ``` Thus, remove the functionality as it's apparently too complex to use correctly. |
||
|---|---|---|
| .. | ||
| acl.go | ||
| acl_test.go | ||
| common.go | ||
| common_test.go | ||
| tar.go | ||
| tar_test.go | ||
| zip.go | ||
| zip_test.go | ||