diff options
author | Ingela Anderton Andin <[email protected]> | 2018-12-18 12:30:46 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2018-12-19 12:32:00 +0100 |
commit | a10200ce143a32c7c15e804e9f401a0904bb49ef (patch) | |
tree | 8ff9ee92612052cb6bf0419d32057d8171a21f3f /lib/ssl/src/ssl_connection.erl | |
parent | 2d683624bc38ef39ad175477d12fa1cd32aeaf82 (diff) | |
download | otp-a10200ce143a32c7c15e804e9f401a0904bb49ef.tar.gz otp-a10200ce143a32c7c15e804e9f401a0904bb49ef.tar.bz2 otp-a10200ce143a32c7c15e804e9f401a0904bb49ef.zip |
ssl: Fix renegotiation with new TLS sender
Wtite connection state was not synchronized when peer initiated renegotiation
Diffstat (limited to 'lib/ssl/src/ssl_connection.erl')
-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 e8c8120f50..41d853977e 100644 --- a/lib/ssl/src/ssl_connection.erl +++ b/lib/ssl/src/ssl_connection.erl @@ -1147,7 +1147,7 @@ handle_common_event(internal, {handshake, {#hello_request{} = Handshake, _}}, co handle_common_event(internal, {handshake, {#hello_request{}, _}}, StateName, #state{static_env = #static_env{role = client}}, _) when StateName =/= connection -> - {keep_state_and_data}; + keep_state_and_data; handle_common_event(internal, {handshake, {Handshake, Raw}}, StateName, #state{tls_handshake_history = Hs0} = State0, Connection) -> |