diff options
author | Fredrik Gustafsson <[email protected]> | 2012-11-16 10:46:13 +0100 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2012-11-16 10:46:13 +0100 |
commit | 054ea4f360b2aaea2dc56fe70c9a6706c6494c71 (patch) | |
tree | ba9d3cef0902394d1c4ab97bdc44e56287bb10c4 /lib/ssh/src/ssh_transport.erl | |
parent | 94e3d2d216b843a2f3e7187e3f972ebbe3134eba (diff) | |
parent | 44f36e3eb20f5f9efcdfa5b6ecb3e22fc4ab9011 (diff) | |
download | otp-054ea4f360b2aaea2dc56fe70c9a6706c6494c71.tar.gz otp-054ea4f360b2aaea2dc56fe70c9a6706c6494c71.tar.bz2 otp-054ea4f360b2aaea2dc56fe70c9a6706c6494c71.zip |
Merge branch 'maint'
* maint:
Fixed if it is not the record to read from in read_password
Fixed user interaction ssh
Diffstat (limited to 'lib/ssh/src/ssh_transport.erl')
-rw-r--r-- | lib/ssh/src/ssh_transport.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh_transport.erl b/lib/ssh/src/ssh_transport.erl index 1f912c9bdf..7f6e7d9946 100644 --- a/lib/ssh/src/ssh_transport.erl +++ b/lib/ssh/src/ssh_transport.erl @@ -133,7 +133,7 @@ kex_dh_gex_messages() -> ]. yes_no(Ssh, Prompt) -> - (Ssh#ssh.io_cb):yes_no(Prompt). + (Ssh#ssh.io_cb):yes_no(Prompt, Ssh). connect(ConnectionSup, Address, Port, SocketOpts, Opts) -> Timeout = proplists:get_value(connect_timeout, Opts, infinity), |