summaryrefslogtreecommitdiff
path: root/Annex/Ssh.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Annex/Ssh.hs')
-rw-r--r--Annex/Ssh.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Annex/Ssh.hs b/Annex/Ssh.hs
index c05e23604..14ea74e53 100644
--- a/Annex/Ssh.hs
+++ b/Annex/Ssh.hs
@@ -101,7 +101,7 @@ hostport2socket host (Just port) = host ++ "!" ++ show port
socket2hostport :: FilePath -> (String, Maybe Integer)
socket2hostport socket
| null p = (h, Nothing)
- | otherwise = (h, readMaybe p)
+ | otherwise = (h, readish p)
where
(h, p) = separate (== '!') $ takeFileName socket