summaryrefslogtreecommitdiff
path: root/Annex.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Annex.hs')
-rw-r--r--Annex.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Annex.hs b/Annex.hs
index 5c9ec4cd4..c4df0b92f 100644
--- a/Annex.hs
+++ b/Annex.hs
@@ -60,7 +60,7 @@ import Types.NumCopies
import Types.LockCache
import Types.DesktopNotify
import Types.CleanupActions
-import qualified Database.AssociatedFiles.Types
+import qualified Database.Keys.Types
#ifdef WITH_QUVI
import Utility.Quvi (QuviVersion)
#endif
@@ -135,7 +135,7 @@ data AnnexState = AnnexState
, desktopnotify :: DesktopNotify
, workers :: [Either AnnexState (Async AnnexState)]
, concurrentjobs :: Maybe Int
- , associatedfilesdbhandle :: Maybe Database.AssociatedFiles.Types.DbHandle
+ , keysdbhandle :: Maybe Database.Keys.Types.DbHandle
}
newState :: GitConfig -> Git.Repo -> AnnexState
@@ -181,7 +181,7 @@ newState c r = AnnexState
, desktopnotify = mempty
, workers = []
, concurrentjobs = Nothing
- , associatedfilesdbhandle = Nothing
+ , keysdbhandle = Nothing
}
{- Makes an Annex state object for the specified git repo.