From 2d9a6940882efc694327eff21860d297a18dde6a Mon Sep 17 00:00:00 2001 From: Jerry Yu Date: Tue, 8 Feb 2022 21:07:10 +0800 Subject: [PATCH] change type of client_auth Signed-off-by: Jerry Yu --- library/ssl_misc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ssl_misc.h b/library/ssl_misc.h index 6896416629..607ed49dd8 100644 --- a/library/ssl_misc.h +++ b/library/ssl_misc.h @@ -769,7 +769,7 @@ struct mbedtls_ssl_handshake_params #endif /* MBEDTLS_SSL_PROTO_TLS1_3 */ #if defined(MBEDTLS_SSL_CLI_C) - int client_auth; /*!< used to check if CertificateRequest has been + uint8_t client_auth; /*!< used to check if CertificateRequest has been received from server side. If CertificateReqeust has been received, Certificate and CertificateVerify should be sent to server */