summaryrefslogtreecommitdiff
path: root/Locations.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-02-14 16:17:40 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-02-14 16:17:40 -0400
commit5fc9ccdaa5c73ec424de175962f98cc8fd63eca0 (patch)
tree1030a6fe9d351709bcdada518d4a24fa4986ed18 /Locations.hs
parent177245deb6ee3271eb44d77c2b0cd722755b2c3f (diff)
split out Utility.InodeCache
Diffstat (limited to 'Locations.hs')
-rw-r--r--Locations.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Locations.hs b/Locations.hs
index 9713a8ec2..49ccb350c 100644
--- a/Locations.hs
+++ b/Locations.hs
@@ -12,7 +12,7 @@ module Locations (
keyPath,
gitAnnexLocation,
gitAnnexMapping,
- gitAnnexCache,
+ gitAnnexInodeCache,
annexLocations,
annexLocation,
gitAnnexDir,
@@ -123,8 +123,8 @@ gitAnnexMapping key r = do
{- File that caches information about a key's content, used to determine
- if a file has changed.
- Used in direct mode. -}
-gitAnnexCache :: Key -> Git.Repo -> IO FilePath
-gitAnnexCache key r = do
+gitAnnexInodeCache :: Key -> Git.Repo -> IO FilePath
+gitAnnexInodeCache key r = do
loc <- gitAnnexLocation key r
return $ loc ++ ".cache"