diff options
author | Joey Hess <joey@kitenet.net> | 2013-09-25 16:07:11 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-09-25 16:07:11 -0400 |
commit | 8f29f17005f427f8c671656e90ba1610862313fb (patch) | |
tree | dd59c640d6349f8d64a80d94357e78daed38e433 /Utility/InodeCache.hs | |
parent | 732d9aa3a0ae7233a74e412647cbfae856b67708 (diff) |
add, import, assistant: Better preserve the mtime of symlinks, when when adding content that gets deduplicated.
Note that this turned out to remove a syscall, not add any expense.
Otherwise, I would not have done it.
Diffstat (limited to 'Utility/InodeCache.hs')
-rw-r--r-- | Utility/InodeCache.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Utility/InodeCache.hs b/Utility/InodeCache.hs index 8037c61c8..46ca87bd9 100644 --- a/Utility/InodeCache.hs +++ b/Utility/InodeCache.hs @@ -49,6 +49,9 @@ instance Eq InodeCacheKey where inodeCacheToKey :: InodeComparisonType -> InodeCache -> InodeCacheKey inodeCacheToKey ct (InodeCache prim) = InodeCacheKey ct prim +inodeCacheToMtime :: InodeCache -> EpochTime +inodeCacheToMtime (InodeCache (InodeCachePrim _ _ mtime)) = mtime + showInodeCache :: InodeCache -> String showInodeCache (InodeCache (InodeCachePrim inode size mtime)) = unwords [ show inode |