This commit is contained in:
Sebastian Messmer 2016-06-08 12:35:56 -07:00
parent e2ec72edde
commit e8ad454e47

View File

@ -230,6 +230,7 @@ void DirEntryList::setAccessTimes(const blockstore::Key &key, timespec lastAcces
void DirEntryList::updateAccessTimestampForChild(const blockstore::Key &key) {
auto found = _findByKey(key);
// TODO Think about implementing relatime behavior. Currently, CryFS follows strictatime.
found->setLastAccessTime(cpputils::time::now());
}