aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh_connection.erl
diff options
context:
space:
mode:
authorBen Tyler <[email protected]>2015-11-01 02:27:52 +0100
committerHenrik Nord <[email protected]>2015-11-05 11:36:49 +0100
commitbd5666f98d15aa363820465621977ffb60271954 (patch)
treebaf3d30893b0c6491c62c33133d59d22311cab33 /lib/ssh/src/ssh_connection.erl
parent0ce885af02b6666d498c408ff0188a5fd22c8575 (diff)
downloadotp-bd5666f98d15aa363820465621977ffb60271954.tar.gz
otp-bd5666f98d15aa363820465621977ffb60271954.tar.bz2
otp-bd5666f98d15aa363820465621977ffb60271954.zip
Fix spelling of ssh 'subsystem'
This commit does not change any behaviour, since the spelling was internally consistent.
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),