diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-12-06 13:32:28 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2018-02-19 15:29:36 +0100 |
commit | cb3db8dc2cd1fbb2fdba02378c192a3d2460f448 (patch) | |
tree | 758a298eeeea2f8d9aeae0defb4a273571723ab2 /lib/auth/cert.c | |
parent | 9829ef9a3ca06d60472599df7c74ebb9a53f1fe2 (diff) | |
download | gnutls-cb3db8dc2cd1fbb2fdba02378c192a3d2460f448.tar.gz |
ocsp: send all the OCSP responses under TLS1.3
That is, any responses set by the caller application (directly
or via a callback), will be sent to the peer.
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'lib/auth/cert.c')
-rw-r--r-- | lib/auth/cert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/auth/cert.c b/lib/auth/cert.c index 085857bcd2..d758de9455 100644 --- a/lib/auth/cert.c +++ b/lib/auth/cert.c @@ -493,7 +493,7 @@ _gnutls_select_client_cert(gnutls_session_t session, cert_list_length, NULL, 0, cred->certs[indx].pkey, 0, - NULL, NULL); + NULL, 0); } else { _gnutls_selected_certs_set(session, NULL, 0, NULL, 0, NULL, 0, NULL, NULL); |