aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src/ct_ssh.erl
diff options
context:
space:
mode:
authorPeter Andersson <[email protected]>2013-06-04 16:15:29 +0200
committerPeter Andersson <[email protected]>2013-06-04 16:15:29 +0200
commit9087aeb1fa77bb46ca5364102ed1c9eb37854447 (patch)
treefc85873dc53da408bd2baba383f395d7081c32d2 /lib/common_test/src/ct_ssh.erl
parent3855c2e4a72533bda162e94ce4080f9b4e5b1e74 (diff)
parentcf68fec61294194b47063d2368ff916964e8644d (diff)
downloadotp-9087aeb1fa77bb46ca5364102ed1c9eb37854447.tar.gz
otp-9087aeb1fa77bb46ca5364102ed1c9eb37854447.tar.bz2
otp-9087aeb1fa77bb46ca5364102ed1c9eb37854447.zip
Merge branch 'maint'
Diffstat (limited to 'lib/common_test/src/ct_ssh.erl')
-rw-r--r--lib/common_test/src/ct_ssh.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/common_test/src/ct_ssh.erl b/lib/common_test/src/ct_ssh.erl
index c6ea27b10e..1adc79d358 100644
--- a/lib/common_test/src/ct_ssh.erl
+++ b/lib/common_test/src/ct_ssh.erl
@@ -1328,10 +1328,10 @@ do_recv_response(SSH, Chn, Data, End, Timeout) ->
get_handle(SSH) when is_pid(SSH) ->
{ok,SSH};
get_handle(SSH) ->
- case ct_util:get_connections(SSH, ?MODULE) of
- {ok,[{Pid,_}]} ->
+ case ct_util:get_connection(SSH, ?MODULE) of
+ {ok,{Pid,_}} ->
{ok,Pid};
- {ok,[]} ->
+ {error,no_registered_connection} ->
connect(SSH);
Error ->
Error