diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2002-03-03 09:18:29 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2002-03-03 09:18:29 +0000 |
commit | ac9cb990b8a029dfd9615c9a33a1f4fef4a45344 (patch) | |
tree | b111b068113a167ef341ff501d920b27c97cb6ae /lib/auth_dhe.c | |
parent | c5e1f43b154c9b66d0afeb804e7a7f9a1864bf82 (diff) | |
download | gnutls-ac9cb990b8a029dfd9615c9a33a1f4fef4a45344.tar.gz |
Added checks in authentication type renegotiation procedure.
Diffstat (limited to 'lib/auth_dhe.c')
-rw-r--r-- | lib/auth_dhe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/auth_dhe.c b/lib/auth_dhe.c index f7ef27e497..daabafb581 100644 --- a/lib/auth_dhe.c +++ b/lib/auth_dhe.c @@ -117,7 +117,7 @@ static int gen_dhe_server_kx(GNUTLS_STATE state, opaque ** data) return GNUTLS_E_MEMORY_ERROR; } - if ( (ret=_gnutls_auth_info_set( state, GNUTLS_CRD_CERTIFICATE, sizeof( CERTIFICATE_AUTH_INFO_INT))) < 0) { + if ( (ret=_gnutls_auth_info_set( state, GNUTLS_CRD_CERTIFICATE, sizeof( CERTIFICATE_AUTH_INFO_INT), 0)) < 0) { gnutls_assert(); return ret; } |