aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh_connection.erl
diff options
context:
space:
mode:
authorHenrik Nord <[email protected]>2015-11-16 13:22:28 +0100
committerHenrik Nord <[email protected]>2015-11-16 13:22:28 +0100
commit01ecb1cd777b82259bb29824ac73906831c017fe (patch)
treecaef030c9a8d6e37331a385a66e53525e27141d7 /lib/ssh/src/ssh_connection.erl
parent8a09a732de07b41683714345992dbb9611f29dd7 (diff)
parentbd5666f98d15aa363820465621977ffb60271954 (diff)
downloadotp-01ecb1cd777b82259bb29824ac73906831c017fe.tar.gz
otp-01ecb1cd777b82259bb29824ac73906831c017fe.tar.bz2
otp-01ecb1cd777b82259bb29824ac73906831c017fe.zip
Merge branch 'kanatohodets/ssh-subsystem-typo' into maint
* kanatohodets/ssh-subsystem-typo: Fix spelling of ssh 'subsystem' OTP-13108
Diffstat (limited to 'lib/ssh/src/ssh_connection.erl')
-rw-r--r--lib/ssh/src/ssh_connection.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssh/src/ssh_connection.erl b/lib/ssh/src/ssh_connection.erl
index 266c64fd4f..a34478732c 100644
--- a/lib/ssh/src/ssh_connection.erl
+++ b/lib/ssh/src/ssh_connection.erl
@@ -662,7 +662,7 @@ handle_msg(#ssh_msg_channel_request{recipient_channel = ChannelId,
ReplyMsg = {subsystem, ChannelId, WantReply, binary_to_list(SsName)},
try
- {ok, Pid} = start_subsytem(SsName, Connection, Channel0, ReplyMsg),
+ {ok, Pid} = start_subsystem(SsName, Connection, Channel0, ReplyMsg),
erlang:monitor(process, Pid),
Channel = Channel0#channel{user = Pid},
ssh_channel:cache_update(Cache, Channel),
@@ -1017,7 +1017,7 @@ start_cli(#connection{options = Options,
sub_system_supervisor = SubSysSup}, ChannelId) ->
start_channel(CbModule, ChannelId, Args, SubSysSup, Exec, Options).
-start_subsytem(BinName, #connection{options = Options,
+start_subsystem(BinName, #connection{options = Options,
sub_system_supervisor = SubSysSup},
#channel{local_id = ChannelId}, _ReplyMsg) ->
Name = binary_to_list(BinName),