diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-10-01 13:28:49 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-10-01 13:29:17 -0400 |
commit | e3969aeb3c1d8a91a31d4da31097ab5c59436774 (patch) | |
tree | 7fd39a284fa2d7ed37a3aab5edbbe5f80cce76d0 /Types | |
parent | 5be958bddc3afeabe51bd9da598682617ba4e0e7 (diff) |
rename fsckKey to verifyKeyContent
No behavior changes.
Diffstat (limited to 'Types')
-rw-r--r-- | Types/Backend.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Types/Backend.hs b/Types/Backend.hs index 8967f3153..7fd0478f7 100644 --- a/Types/Backend.hs +++ b/Types/Backend.hs @@ -15,8 +15,8 @@ import Types.KeySource data BackendA a = Backend { name :: String , getKey :: KeySource -> a (Maybe Key) - -- Checks the content of a key. - , fsckKey :: Maybe (Key -> FilePath -> a Bool) + -- Verifies the content of a key. + , verifyKeyContent :: Maybe (Key -> FilePath -> a Bool) -- Checks if a key can be upgraded to a better form. , canUpgradeKey :: Maybe (Key -> Bool) -- Checks if there is a fast way to migrate a key to a different |