diff options
author | Niclas Eklund <[email protected]> | 2011-04-20 18:24:34 +0200 |
---|---|---|
committer | Niclas Eklund <[email protected]> | 2011-04-20 18:24:34 +0200 |
commit | d33d5047ac8c0730883454878be4ea88b3b0c2cc (patch) | |
tree | f8dc1cc119206b333a140f316ddda4073031a325 /lib/ssh/src/ssh_connection_handler.erl | |
parent | 74b2add269e39a5776e429318aeb6bdfb0b41e8c (diff) | |
parent | 459bde53cf564d47d26d9248ab964a09ed4e40b4 (diff) | |
download | otp-d33d5047ac8c0730883454878be4ea88b3b0c2cc.tar.gz otp-d33d5047ac8c0730883454878be4ea88b3b0c2cc.tar.bz2 otp-d33d5047ac8c0730883454878be4ea88b3b0c2cc.zip |
Merge branch 'maint-r14' of super:otp into nick/ssh/memory_leak/OTP-9232
Diffstat (limited to 'lib/ssh/src/ssh_connection_handler.erl')
-rw-r--r-- | lib/ssh/src/ssh_connection_handler.erl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/ssh/src/ssh_connection_handler.erl b/lib/ssh/src/ssh_connection_handler.erl index 0ba11b0a26..2d82e6d77d 100644 --- a/lib/ssh/src/ssh_connection_handler.erl +++ b/lib/ssh/src/ssh_connection_handler.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2008-2010. All Rights Reserved. +%% Copyright Ericsson AB 2008-2011. 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 @@ -106,8 +106,6 @@ peer_address(ConnectionHandler) -> %% initialize. %%-------------------------------------------------------------------- init([Role, Manager, Socket, SshOpts]) -> - {A,B,C} = erlang:now(), - random:seed(A, B, C), {NumVsn, StrVsn} = ssh_transport:versions(Role, SshOpts), ssh_bits:install_messages(ssh_transport:transport_messages(NumVsn)), {Protocol, Callback, CloseTag} = |