diff options
author | Hans Nilsson <[email protected]> | 2018-03-05 12:18:54 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2018-03-05 12:18:54 +0100 |
commit | 45e2b4aba7fa8bc5a7ae94f5f0f593d0a0159f04 (patch) | |
tree | 563ffc46d0de9defdcc68545e939332b1ebeb27f /lib/ssh/src/ssh.erl | |
parent | 073829d18ada35a18ff681f891b0d4fbfbff5c2f (diff) | |
parent | ba3710484344ed57124574abcd0f19fbe251389c (diff) | |
download | otp-45e2b4aba7fa8bc5a7ae94f5f0f593d0a0159f04.tar.gz otp-45e2b4aba7fa8bc5a7ae94f5f0f593d0a0159f04.tar.bz2 otp-45e2b4aba7fa8bc5a7ae94f5f0f593d0a0159f04.zip |
Merge branch 'maint-18' into maint
* maint-18:
Updated OTP version
Update release notes
Update version numbers
ssh: Fix cli
ssh: Test for disabled shell
Conflicts:
OTP_VERSION
lib/ssh/doc/src/notes.xml
lib/ssh/src/ssh.erl
lib/ssh/src/ssh_cli.erl
lib/ssh/vsn.mk
otp_versions.table
Diffstat (limited to 'lib/ssh/src/ssh.erl')
-rw-r--r-- | lib/ssh/src/ssh.erl | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/ssh/src/ssh.erl b/lib/ssh/src/ssh.erl index 032d87bdad..25d537c624 100644 --- a/lib/ssh/src/ssh.erl +++ b/lib/ssh/src/ssh.erl @@ -184,7 +184,6 @@ channel_info(ConnectionRef, ChannelId, Options) -> daemon(Port) -> daemon(Port, []). - daemon(Socket, UserOptions) when is_port(Socket) -> try #{} = Options = ssh_options:handle_options(server, UserOptions), @@ -267,8 +266,6 @@ daemon(Host0, Port0, UserOptions0) when 0 =< Port0, Port0 =< 65535, daemon(_, _, _) -> {error, badarg}. - - %%-------------------------------------------------------------------- -spec daemon_info(daemon_ref()) -> ok_error( [{atom(), term()}] ). |