diff options
author | Ingela Anderton Andin <[email protected]> | 2018-12-20 11:10:14 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2018-12-20 11:10:14 +0100 |
commit | fa5a02d895f8f5716c129e92f4f83fea8f5c2e10 (patch) | |
tree | 283b42cf753d07eea766802602d1196b020b12f3 /lib | |
parent | 12d4c5b8ec6310952ee5e72c4a07b5d6bb2bf724 (diff) | |
download | otp-fa5a02d895f8f5716c129e92f4f83fea8f5c2e10.tar.gz otp-fa5a02d895f8f5716c129e92f4f83fea8f5c2e10.tar.bz2 otp-fa5a02d895f8f5716c129e92f4f83fea8f5c2e10.zip |
ssl: Correct number of arguments in master
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssl/src/tls_connection.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/src/tls_connection.erl b/lib/ssl/src/tls_connection.erl index a49f0d99ca..b042baebcb 100644 --- a/lib/ssl/src/tls_connection.erl +++ b/lib/ssl/src/tls_connection.erl @@ -691,7 +691,7 @@ connection(internal, #hello_request{}, try tls_sender:peer_renegotiate(Pid) of {ok, Write} -> Hello = tls_handshake:client_hello(Host, Port, ConnectionStates, SslOpts, - Cache, CacheCb, Renegotiation, Cert), + Cache, CacheCb, Renegotiation, Cert, undefined), {State, Actions} = send_handshake(Hello, State0#state{connection_states = ConnectionStates#{current_write => Write}}), next_event(hello, no_record, State#state{session = Session0#session{session_id = Hello#client_hello.session_id}}, Actions) |