aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh_connection_handler.erl
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2015-02-04 14:29:58 +0100
committerHans Nilsson <[email protected]>2015-02-05 10:54:33 +0100
commitba3bd714f1c09e8bd8db0253ac18021cfabee28f (patch)
treec63239c4c0a3eded367de3fa89c4c0aaad0d6d7f /lib/ssh/src/ssh_connection_handler.erl
parent280399ccfc3c4bd0e9c87c22bfc13045aae2bb76 (diff)
downloadotp-ba3bd714f1c09e8bd8db0253ac18021cfabee28f.tar.gz
otp-ba3bd714f1c09e8bd8db0253ac18021cfabee28f.tar.bz2
otp-ba3bd714f1c09e8bd8db0253ac18021cfabee28f.zip
Fix ssh:connect erroneus error msg at timeout
Diffstat (limited to 'lib/ssh/src/ssh_connection_handler.erl')
-rw-r--r--lib/ssh/src/ssh_connection_handler.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh_connection_handler.erl b/lib/ssh/src/ssh_connection_handler.erl
index 915060c426..68523aa72b 100644
--- a/lib/ssh/src/ssh_connection_handler.erl
+++ b/lib/ssh/src/ssh_connection_handler.erl
@@ -1711,7 +1711,7 @@ handshake(Pid, Ref, Timeout) ->
{error, Reason}
after Timeout ->
stop(Pid),
- {error, Timeout}
+ {error, timeout}
end.
start_timeout(_,_, infinity) ->