mirror of
https://github.com/octoleo/restic.git
synced 2024-11-22 21:05:10 +00:00
9 lines
396 B
Plaintext
9 lines
396 B
Plaintext
|
Bugfix: Use ctime when checking for file changes
|
||
|
|
||
|
Previously, restic only checked a file's mtime (along with other non-timestamp
|
||
|
data) to decide if a file has changed. This could cause it to not notice changes
|
||
|
if something edits a file and then resets the timestamp. Restic now also checks
|
||
|
the ctime, so any modification to a file should be noticed.
|
||
|
|
||
|
https://github.com/restic/restic/issues/2179
|