diff options
author | Joey Hess <joey@kitenet.net> | 2012-01-03 18:39:39 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-01-03 18:40:47 -0400 |
commit | a1aea174d7bc0392cf1cdd71ecc9b863923f1940 (patch) | |
tree | aafb724d8e3c6d7b3998dd120ceee7d747464051 /Command | |
parent | 1e929c022d3004461c238d4b8230a4ce9a5b106f (diff) |
fsck: Do backend-specific check before checking numcopies is satisfied.
This way, when a checksum check fails and the content is moved aside,
the numcopies check also warns if there are not enough copies.
Diffstat (limited to 'Command')
-rw-r--r-- | Command/Fsck.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Fsck.hs b/Command/Fsck.hs index 4e83455e1..723a2e740 100644 --- a/Command/Fsck.hs +++ b/Command/Fsck.hs @@ -40,8 +40,8 @@ perform key file backend numcopies = check -- order matters [ verifyLocationLog key file , checkKeySize key - , checkKeyNumCopies key file numcopies , checkBackend backend key + , checkKeyNumCopies key file numcopies ] {- To fsck a bare repository, fsck each key in the location log. -} |