Oh, now I noticed Bodo's change that made tlsext_ecpointformatlist
authorRichard Levitte <levitte@openssl.org>
Mon, 13 Mar 2006 12:37:19 +0000 (12:37 +0000)
committerRichard Levitte <levitte@openssl.org>
Mon, 13 Mar 2006 12:37:19 +0000 (12:37 +0000)
unsigned...

ssl/t1_lib.c

index 24e6451aabe9729d6032340f10c6ef8dab78589f..330963ecabbbcd2838bc45898689934c53501f8f 100644 (file)
@@ -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)