aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/test/ssh_chan_behaviours_client.erl
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2019-04-17 12:38:41 +0200
committerHans Nilsson <[email protected]>2019-04-17 16:36:57 +0200
commit5d3b3cafce25fbb8dd6a791a174778fa9139193c (patch)
tree5202e44d992917c1cae7e1ee317d1e6576b36f41 /lib/ssh/test/ssh_chan_behaviours_client.erl
parentb77bf65d0a37460ce1f75a2a94acf5ecd42b4e3d (diff)
downloadotp-5d3b3cafce25fbb8dd6a791a174778fa9139193c.tar.gz
otp-5d3b3cafce25fbb8dd6a791a174778fa9139193c.tar.bz2
otp-5d3b3cafce25fbb8dd6a791a174778fa9139193c.zip
ssh: Remove unused var warning in tests
Diffstat (limited to 'lib/ssh/test/ssh_chan_behaviours_client.erl')
-rw-r--r--lib/ssh/test/ssh_chan_behaviours_client.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/test/ssh_chan_behaviours_client.erl b/lib/ssh/test/ssh_chan_behaviours_client.erl
index 15f17733d6..8dd18973ad 100644
--- a/lib/ssh/test/ssh_chan_behaviours_client.erl
+++ b/lib/ssh/test/ssh_chan_behaviours_client.erl
@@ -94,7 +94,7 @@ handle_ssh_msg({ssh_cm, C, {eof, Ch}}=M, #state{ch=Ch,cm=C} = State) ->
?DBG(State, "eof",[]),
{ok, State};
-handle_ssh_msg({ssh_cm, C, {signal, _Ch, _SigNameStr}=Sig} = M, #state{ch=Ch,cm=C} = State) ->
+handle_ssh_msg({ssh_cm, C, {signal, Ch, _SigNameStr}=Sig} = M, #state{ch=Ch,cm=C} = State) ->
%% Ignore signals according to RFC 4254 section 6.9.
tell_parent(M, State),
?DBG(State, "~p",[Sig]),