diff options
author | nick <[email protected]> | 2010-09-03 12:52:02 +0200 |
---|---|---|
committer | nick <[email protected]> | 2010-09-03 12:52:02 +0200 |
commit | 8f67f51105560f1c0e721117100cf20d0c6061c0 (patch) | |
tree | d1c69b96672df5bf985914d9e3799168c41fdf82 /lib/ssh/src/ssh_connection_controler.erl | |
parent | f0c4e27ef0a5a365cab7b1dc69dbecf7856c3f3f (diff) | |
parent | fddc1ed0341d13df8373509fa063d889fab8d219 (diff) | |
download | otp-8f67f51105560f1c0e721117100cf20d0c6061c0.tar.gz otp-8f67f51105560f1c0e721117100cf20d0c6061c0.tar.bz2 otp-8f67f51105560f1c0e721117100cf20d0c6061c0.zip |
Merge branch 'nick/ssh/fix-process-leak/OTP-8807' into dev
* nick/ssh/fix-process-leak/OTP-8807:
Fix race condition when terminating a connection.
fix process leak in ssh_system_sup (dynamicaly created childs where not cleaned up)
Diffstat (limited to 'lib/ssh/src/ssh_connection_controler.erl')
-rw-r--r-- | lib/ssh/src/ssh_connection_controler.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssh/src/ssh_connection_controler.erl b/lib/ssh/src/ssh_connection_controler.erl index 636ecba532..ca3e62dc83 100644 --- a/lib/ssh/src/ssh_connection_controler.erl +++ b/lib/ssh/src/ssh_connection_controler.erl @@ -126,8 +126,8 @@ handle_cast(_, State) -> %% handle_info(ssh_connected, State) -> %% {stop, normal, State}; %% Servant termination. -handle_info({'EXIT', _Pid, normal}, State) -> - {stop, normal, State}. +handle_info({'EXIT', _Pid, Reason}, State) -> + {stop, Reason, State}. %%----------------------------------------------------------------- %% Func: code_change/3 |