diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-11-08 11:47:22 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2017-11-24 22:17:04 +0100 |
commit | c9e394931f7a9f6707385f1cf0e7b99ca6417535 (patch) | |
tree | 63038a4a859624e8350aff849f19b5dee83d2f63 | |
parent | 095a421c26131838035f6208a25737b160575a53 (diff) | |
download | gnutls-c9e394931f7a9f6707385f1cf0e7b99ca6417535.tar.gz |
session state: use the right type for send_cert_req variable
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
-rw-r--r-- | lib/gnutls_int.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gnutls_int.h b/lib/gnutls_int.h index 76e64083b2..17c0486999 100644 --- a/lib/gnutls_int.h +++ b/lib/gnutls_int.h @@ -922,7 +922,7 @@ typedef struct { * supports it. In server side it contains GNUTLS_CERT_REQUIRE * or similar. */ - unsigned send_cert_req; + gnutls_certificate_request_t send_cert_req; size_t max_handshake_data_buffer_size; |