summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Assistant/DaemonStatus.hs2
-rw-r--r--Assistant/Drop.hs2
-rw-r--r--Remote.hs2
3 files changed, 3 insertions, 3 deletions
diff --git a/Assistant/DaemonStatus.hs b/Assistant/DaemonStatus.hs
index 5e1ecab3c..a93f4105a 100644
--- a/Assistant/DaemonStatus.hs
+++ b/Assistant/DaemonStatus.hs
@@ -46,7 +46,7 @@ calcSyncRemotes :: Annex [Remote]
calcSyncRemotes = do
rs <- filterM (repoSyncable . Remote.repo) =<<
concat . Remote.byCost <$> Remote.enabledRemoteList
- alive <- snd <$> trustPartition DeadTrusted (map Remote.uuid rs)
+ alive <- trustExclude DeadTrusted (map Remote.uuid rs)
let good r = Remote.uuid r `elem` alive
return $ filter good rs
diff --git a/Assistant/Drop.hs b/Assistant/Drop.hs
index a02f58652..d28a05a53 100644
--- a/Assistant/Drop.hs
+++ b/Assistant/Drop.hs
@@ -39,7 +39,7 @@ handleDrops' locs rs fromhere key (Just f)
| otherwise = go rs =<< getcopies
where
getcopies = do
- have <- length . snd <$> trustPartition UnTrusted locs
+ have <- length <$> trustExclude UnTrusted locs
numcopies <- getNumCopies =<< numCopies f
return (have, numcopies)
checkcopies (have, numcopies) = have > numcopies
diff --git a/Remote.hs b/Remote.hs
index 272fc6d23..721b64edb 100644
--- a/Remote.hs
+++ b/Remote.hs
@@ -169,7 +169,7 @@ remotesWithoutUUID rs us = filter (\r -> uuid r `notElem` us) rs
{- List of repository UUIDs that the location log indicates may have a key.
- Dead repositories are excluded. -}
keyLocations :: Key -> Annex [UUID]
-keyLocations key = snd <$> (trustPartition DeadTrusted =<< loggedLocations key)
+keyLocations key = trustExclude DeadTrusted =<< loggedLocations key
{- Cost ordered lists of remotes that the location log indicates
- may have a key.