diff options
author | Joey Hess <joey@kitenet.net> | 2013-08-04 13:12:18 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-08-04 13:18:05 -0400 |
commit | 381c1f7634e20a2faa0b15255870f9dbf745f230 (patch) | |
tree | 52f5bd3a605dc89ca9d29d66b48c49e9956752ee /Annex/Ssh.hs | |
parent | 9d06348fa368d502fd1330969cad3c0ea25286fa (diff) |
squash compiler warnings on Windows
Diffstat (limited to 'Annex/Ssh.hs')
-rw-r--r-- | Annex/Ssh.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Annex/Ssh.hs b/Annex/Ssh.hs index 4fdac28ad..6fd2c556c 100644 --- a/Annex/Ssh.hs +++ b/Annex/Ssh.hs @@ -19,11 +19,13 @@ import Data.Hash.MD5 import Common.Annex import Annex.LockPool -import Annex.Perms import qualified Build.SysConfig as SysConfig import qualified Annex import Config import Utility.Env +#ifndef mingw32_HOST_OS +import Annex.Perms +#endif {- Generates parameters to ssh to a given host (or user@host) on a given - port, with connection caching. -} |