aboutsummaryrefslogtreecommitdiff
path: root/Backend.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-07-30 10:34:39 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-07-30 10:34:39 -0400
commita6b6666c488f37e2e02ca0ec151283e0a41c5631 (patch)
tree672a65229a948056bb1953c80d8c6dcb7a52f530 /Backend.hs
parentca57baac3e607e8ed878071278cc0c24746f4282 (diff)
only chunk stable keys
The content of unstable keys can potentially be different in different repos, so eg, resuming a chunked upload started by another repo would corrupt data.
Diffstat (limited to 'Backend.hs')
-rw-r--r--Backend.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Backend.hs b/Backend.hs
index 99752c66f..0fcaaa7ed 100644
--- a/Backend.hs
+++ b/Backend.hs
@@ -15,7 +15,7 @@ module Backend (
chooseBackend,
lookupBackendName,
maybeLookupBackendName,
- checkStableKey,
+ isStableKey,
) where
import Common.Annex
@@ -126,6 +126,6 @@ maybeLookupBackendName s = M.lookup s nameMap
nameMap :: M.Map String Backend
nameMap = M.fromList $ zip (map B.name list) list
-checkStableKey :: Key -> Bool
-checkStableKey k = maybe False (`B.isStableKey` k)
+isStableKey :: Key -> Bool
+isStableKey k = maybe False (`B.isStableKey` k)
(maybeLookupBackendName (keyBackendName k))