summaryrefslogtreecommitdiff
path: root/Annex.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Annex.hs')
-rw-r--r--Annex.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Annex.hs b/Annex.hs
index 2bd090e90..82908881d 100644
--- a/Annex.hs
+++ b/Annex.hs
@@ -24,7 +24,7 @@ import Types.Backend
import Types.Remote
import Types.Crypto
import Types.BranchState
-import TrustLevel
+import Types.TrustLevel
import Types.UUID
-- git-annex's monad
@@ -48,6 +48,7 @@ data AnnexState = AnnexState
, fromremote :: Maybe String
, exclude :: [String]
, forcetrust :: [(UUID, TrustLevel)]
+ , trustmap :: Maybe TrustMap
, cipher :: Maybe Cipher
}
@@ -69,6 +70,7 @@ newState allbackends gitrepo = AnnexState
, fromremote = Nothing
, exclude = []
, forcetrust = []
+ , trustmap = Nothing
, cipher = Nothing
}