diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-09-29 10:10:48 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2018-02-19 15:29:35 +0100 |
commit | 0acb5e17686fb6261f6129391aa7f81cc959114a (patch) | |
tree | bf5f8da7b0de35ad2d1c7a7cc8372c52dd294f28 /lib/handshake-tls13.c | |
parent | 344633626c9c497a61d975f22f83f227934b4c21 (diff) | |
download | gnutls-0acb5e17686fb6261f6129391aa7f81cc959114a.tar.gz |
handshake: accept hello retry request in client side
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'lib/handshake-tls13.c')
-rw-r--r-- | lib/handshake-tls13.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handshake-tls13.c b/lib/handshake-tls13.c index 87a8766389..5776d310c4 100644 --- a/lib/handshake-tls13.c +++ b/lib/handshake-tls13.c @@ -197,7 +197,7 @@ int _gnutls13_handshake_server(gnutls_session_t session) switch (STATE) { case STATE90: - ret = _gnutls13_handshake_hash_buffers_synth(session); + ret = _gnutls13_handshake_hash_buffers_synth(session, session->security_parameters.prf, 0); STATE = STATE90; IMED_RET("reset handshake buffers", ret, 0); /* fall through */ |