summaryrefslogtreecommitdiff
path: root/TypeInternals.hs
diff options
context:
space:
mode:
Diffstat (limited to 'TypeInternals.hs')
-rw-r--r--TypeInternals.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/TypeInternals.hs b/TypeInternals.hs
index 4b5cff9d9..3078224b1 100644
--- a/TypeInternals.hs
+++ b/TypeInternals.hs
@@ -75,7 +75,9 @@ data Backend = Backend {
-- removes a key
removeKey :: Key -> Annex Bool,
-- checks if a backend is storing the content of a key
- hasKey :: Key -> Annex Bool
+ hasKey :: Key -> Annex Bool,
+ -- called during fsck to check a key
+ fsckKey :: Key -> Annex Bool
}
instance Show Backend where