From b9865f110ea66ee00043bad9cf24fb46513fb865 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 13 Mar 2006 12:37:19 +0000 Subject: [PATCH] Oh, now I noticed Bodo's change that made tlsext_ecpointformatlist unsigned... --- ssl/t1_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c index 24e6451aab..330963ecab 100644 --- a/ssl/t1_lib.c +++ b/ssl/t1_lib.c @@ -637,7 +637,7 @@ int ssl_check_serverhello_tlsext(SSL *s) SSLerr(SSL_F_TLS1_CHECK_SERVERHELLO_TLSEXT,SSL_R_TLS_INVALID_ECPOINTFORMAT_LIST); return -1; } - list = (unsigned char *)(s->session->tlsext_ecpointformatlist); + list = s->session->tlsext_ecpointformatlist; for (i = 0; i < s->session->tlsext_ecpointformatlist_length; i++) { if (*(list++) == TLSEXT_ECPOINTFORMAT_uncompressed) -- 2.25.1