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:30:33 +0100
commitca0582834661c54018d82e1f5b1abe6824053963 (patch)
tree44ad13d2433d5f1c2b0de56bfdf567f6a68fe6dc /lib/ssh/src/ssh.erl
parent708b1019bcef5d2a9ba21430f18243d1c8ad8fd1 (diff)
downloadotp-ca0582834661c54018d82e1f5b1abe6824053963.tar.gz
otp-ca0582834661c54018d82e1f5b1abe6824053963.tar.bz2
otp-ca0582834661c54018d82e1f5b1abe6824053963.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 290525cec0..ecdb184db3 100644
--- a/lib/ssh/src/ssh.erl
+++ b/lib/ssh/src/ssh.erl
@@ -289,7 +289,7 @@ is_tcp_socket(Socket) ->
daemon_shell_opt(Options) ->
case proplists:get_value(shell, Options) of
undefined ->
- [{shell, {shell, start, []}} | Options];
+ [{shell, ?DEFAULT_SHELL} | Options];
_ ->
Options
end.