aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src/ct_ssh.erl
diff options
context:
space:
mode:
authorZandra <[email protected]>2016-05-30 12:27:51 +0200
committerZandra Hird <[email protected]>2016-06-07 14:35:20 +0200
commit4b6a93510f51afcf7d8c91c568e9db84ef8b1d44 (patch)
tree2bf0d34c0584d6228acc9e41031504862b3ba9aa /lib/common_test/src/ct_ssh.erl
parentf072d82a92ef914a23422b4d03cb687bb841fa4f (diff)
downloadotp-4b6a93510f51afcf7d8c91c568e9db84ef8b1d44.tar.gz
otp-4b6a93510f51afcf7d8c91c568e9db84ef8b1d44.tar.bz2
otp-4b6a93510f51afcf7d8c91c568e9db84ef8b1d44.zip
ct_ssh: Fix unmatched_return warnings
Diffstat (limited to 'lib/common_test/src/ct_ssh.erl')
-rw-r--r--lib/common_test/src/ct_ssh.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/common_test/src/ct_ssh.erl b/lib/common_test/src/ct_ssh.erl
index 92d912052e..6ab3bf036c 100644
--- a/lib/common_test/src/ct_ssh.erl
+++ b/lib/common_test/src/ct_ssh.erl
@@ -962,8 +962,8 @@ init(KeyOrName, {ConnType,Addr,Port}, AllOpts) ->
end, [], AllOpts1),
FinalOptions = [{silently_accept_hosts,true},
{user_interaction,false} | Options],
- crypto:start(),
- ssh:start(),
+ _ = crypto:start(),
+ _ = ssh:start(),
Result = case ConnType of
ssh ->
ssh:connect(Addr, Port, FinalOptions);