summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2014-05-02 14:03:35 -0400
committerjoe <joe@jerkface.net>2014-05-02 14:03:35 -0400
commita1e0ac16e1ab889fd4a015a0c6914f331f034799 (patch)
treef9ee80cb9ed647fed0a271fa6a807e1f712249a1
parent92c2d5cc27781cb20cb3c1264ba405aa74a822c3 (diff)
Removed rtUnspilled in favor of the unspilled result from buildKeyDB
-rw-r--r--KeyRing.hs5
1 files changed, 2 insertions, 3 deletions
diff --git a/KeyRing.hs b/KeyRing.hs
index c79de9f..2bde001 100644
--- a/KeyRing.hs
+++ b/KeyRing.hs
@@ -198,7 +198,8 @@ data StreamInfo = StreamInfo
198 { access :: Access 198 { access :: Access
199 , typ :: FileType 199 , typ :: FileType
200 , fill :: KeyFilter 200 , fill :: KeyFilter
201 , spill :: KeyFilter -- ^ TODO: currently only respected for PEMFile. 201 , spill :: KeyFilter -- ^ Currently respected for PEMFile and KeyRingFile.
202 -- TODO: WalletFile and Hosts
202 -- Note that this is currently treated as a boolean 203 -- Note that this is currently treated as a boolean
203 -- flag. KF_None means the file is not spillable 204 -- flag. KF_None means the file is not spillable
204 -- and anything else means that it is. 205 -- and anything else means that it is.
@@ -241,8 +242,6 @@ data KeyRingRuntime = KeyRingRuntime
241 , rtSecring :: FilePath 242 , rtSecring :: FilePath
242 , rtGrip :: Maybe String 243 , rtGrip :: Maybe String
243 , rtWorkingKey :: Maybe Packet 244 , rtWorkingKey :: Maybe Packet
244 , rtUnspilled :: Map.Map InputFile KeyDB
245 -- ^ TODO: this is currently unused
246 , rtKeyDB :: KeyDB 245 , rtKeyDB :: KeyDB
247 , rtRingAccess :: Map.Map FilePath Access 246 , rtRingAccess :: Map.Map FilePath Access
248 } 247 }