aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-11-24 16:36:16 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-11-24 16:36:16 -0400
commitdeace9a2ffd38cca860ed993265785cf26f2762e (patch)
tree8f65b5511bc08a9a1fe6160c0c9bc19cd944a89e
parent63c41ea48babdf56a7eb81eb96ee9c67a8719853 (diff)
fix build
-rw-r--r--CmdLine/GitRemoteTorAnnex.hs4
-rw-r--r--P2P/IO.hs2
-rw-r--r--RemoteDaemon/Transport/Tor.hs4
3 files changed, 5 insertions, 5 deletions
diff --git a/CmdLine/GitRemoteTorAnnex.hs b/CmdLine/GitRemoteTorAnnex.hs
index 3282cc081..3b2dcc050 100644
--- a/CmdLine/GitRemoteTorAnnex.hs
+++ b/CmdLine/GitRemoteTorAnnex.hs
@@ -10,8 +10,8 @@ module CmdLine.GitRemoteTorAnnex where
import Common
import qualified Annex
import qualified Git.CurrentRepo
-import Remote.Helper.P2P
-import Remote.Helper.P2P.IO
+import P2P.Protocol
+import P2P.IO
import Remote.Helper.Tor
import Utility.Tor
import Utility.AuthToken
diff --git a/P2P/IO.hs b/P2P/IO.hs
index 9a1243f52..822eb524e 100644
--- a/P2P/IO.hs
+++ b/P2P/IO.hs
@@ -12,7 +12,7 @@ module P2P.IO
, runNetProtoHandle
) where
-import Remote.Helper.P2P
+import P2P.Protocol
import Utility.Process
import Git
import Git.Command
diff --git a/RemoteDaemon/Transport/Tor.hs b/RemoteDaemon/Transport/Tor.hs
index f8dfede10..6c5471966 100644
--- a/RemoteDaemon/Transport/Tor.hs
+++ b/RemoteDaemon/Transport/Tor.hs
@@ -13,8 +13,8 @@ import RemoteDaemon.Common
import Utility.Tor
import Utility.FileMode
import Remote.Helper.Tor
-import Remote.Helper.P2P
-import Remote.Helper.P2P.IO
+import P2P.Protocol
+import P2P.IO
import Annex.UUID
import Types.UUID
import Messages