summaryrefslogtreecommitdiff
path: root/Backend/URL.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-01-19 13:51:30 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-01-19 13:51:30 -0400
commitd36525e9745b90cc04abfeac6500ff646cb9c89b (patch)
treeb497b310b7e9da8e00859a9eed616b36c297c07b /Backend/URL.hs
parent50c063df069682bdac2af3b1746933da70a519b8 (diff)
convert fsckKey to a Maybe
This way it's clear when a backend does not implement its own fsck checks.
Diffstat (limited to 'Backend/URL.hs')
-rw-r--r--Backend/URL.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Backend/URL.hs b/Backend/URL.hs
index 7f621b00f..6406095ca 100644
--- a/Backend/URL.hs
+++ b/Backend/URL.hs
@@ -21,7 +21,7 @@ backend :: Backend
backend = Backend {
name = "URL",
getKey = const (return Nothing),
- fsckKey = const (return True)
+ fsckKey = Nothing
}
fromUrl :: String -> Key