diff options
author | Ingela Anderton Andin <[email protected]> | 2010-03-31 10:05:08 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-03-31 10:05:08 +0000 |
commit | c5d3624d7c9b31ca127792cf15eefc66c1972269 (patch) | |
tree | b5ae61bea5e12719426f1c7cc8a33ad727ef8bda /lib | |
parent | 0748ee341d87eed67697b9c39c6f280fdc8d28ae (diff) | |
download | otp-c5d3624d7c9b31ca127792cf15eefc66c1972269.tar.gz otp-c5d3624d7c9b31ca127792cf15eefc66c1972269.tar.bz2 otp-c5d3624d7c9b31ca127792cf15eefc66c1972269.zip |
Fixed arguments to queue:in_r in clause that is very unlikly to happen and hence not covered by test cases.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssl/src/ssl_connection.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_connection.erl b/lib/ssl/src/ssl_connection.erl index d9bb983df0..4ec90600e9 100644 --- a/lib/ssl/src/ssl_connection.erl +++ b/lib/ssl/src/ssl_connection.erl @@ -1856,7 +1856,7 @@ next_state_connection(#state{send_queue = Queue0, ok end, renegotiate(State#state{connection_states = ConnectionStates, - send_queue = queue:in_r({From, RestData})}) + send_queue = queue:in_r({From, RestData}, Queue)}) end; {empty, Queue0} -> next_state_is_connection(State) |