diff options
author | Ingela Anderton Andin <[email protected]> | 2012-04-24 09:41:53 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2012-04-24 09:41:53 +0200 |
commit | e3c9c6a9f006bdef159781e1823c248c731419e5 (patch) | |
tree | 69c1163c4bd566537a7305386f49f5f702ba38c1 /lib/ssh/src/ssh_channel.erl | |
parent | 5e9e971bd86954599a0f499c28ad64f27ccdd813 (diff) | |
parent | e38ddd90b672b368743b4e81e97c3243fa9e4c45 (diff) | |
download | otp-e3c9c6a9f006bdef159781e1823c248c731419e5.tar.gz otp-e3c9c6a9f006bdef159781e1823c248c731419e5.tar.bz2 otp-e3c9c6a9f006bdef159781e1823c248c731419e5.zip |
Merge branch 'ia/ssh/close/OTP-10060' into maint
* ia/ssh/close/OTP-10060:
Avoid sending two ssh close messages
Diffstat (limited to 'lib/ssh/src/ssh_channel.erl')
-rw-r--r-- | lib/ssh/src/ssh_channel.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssh/src/ssh_channel.erl b/lib/ssh/src/ssh_channel.erl index 7b600ed8b2..1938858420 100644 --- a/lib/ssh/src/ssh_channel.erl +++ b/lib/ssh/src/ssh_channel.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2008-2011. All Rights Reserved. +%% Copyright Ericsson AB 2008-2012. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -215,7 +215,7 @@ handle_info({ssh_cm, ConnectionManager, {closed, ChannelId}}, close_sent = false} = State) -> %% To be on the safe side, i.e. the manager has already been terminated. (catch ssh_connection:close(ConnectionManager, ChannelId)), - {stop, normal, State}; + {stop, normal, State#state{close_sent = true}}; handle_info({ssh_cm, _, _} = Msg, #state{cm = ConnectionManager, channel_cb = Module, |