aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh.erl
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2018-01-19 17:13:34 +0100
committerHans Nilsson <[email protected]>2018-01-19 17:23:56 +0100
commit7d44b20a3346132d3f2800a567c2130820732f32 (patch)
treef778e356fc895ad20dd0cb47cb317b089200cc2c /lib/ssh/src/ssh.erl
parent91cc2b86df9a2537ce2eace31642e500550cd0a5 (diff)
downloadotp-7d44b20a3346132d3f2800a567c2130820732f32.tar.gz
otp-7d44b20a3346132d3f2800a567c2130820732f32.tar.bz2
otp-7d44b20a3346132d3f2800a567c2130820732f32.zip
ssh: Fix cli
Conflicts: lib/ssh/src/ssh.hrl lib/ssh/src/ssh_cli.erl
Diffstat (limited to 'lib/ssh/src/ssh.erl')
-rw-r--r--lib/ssh/src/ssh.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh.erl b/lib/ssh/src/ssh.erl
index 54f94acbdc..96a51bcefc 100644
--- a/lib/ssh/src/ssh.erl
+++ b/lib/ssh/src/ssh.erl
@@ -134,7 +134,7 @@ daemon(Port, Options) ->
daemon(HostAddr, Port, Options0) ->
Options1 = case proplists:get_value(shell, Options0) of
undefined ->
- [{shell, {shell, start, []}} | Options0];
+ [{shell, ?DEFAULT_SHELL} | Options0];
_ ->
Options0
end,