diff options
-rw-r--r-- | Backend/SHA.hs | 2 | ||||
-rw-r--r-- | debian/changelog | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Backend/SHA.hs b/Backend/SHA.hs index 94ebe093e..8ed00b707 100644 --- a/Backend/SHA.hs +++ b/Backend/SHA.hs @@ -119,7 +119,7 @@ checkKeyChecksum size key = do then return True else do s <- shaN size file - if s == keyName key + if s == dropExtension (keyName key) then return True else do dest <- moveBad key diff --git a/debian/changelog b/debian/changelog index 4fe1febd3..25c00963c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ git-annex (0.20110602) UNRELEASED; urgency=low * Add --numcopies option. * Add --trust, --untrust, and --semitrust options. * get --from is the same as copy --from + * Bugfix: Fix fsck to not think all SHAnE keys are bad. -- Joey Hess <joeyh@debian.org> Wed, 01 Jun 2011 16:26:48 -0400 |