mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-11 06:35:32 +00:00
Fix contness of debug_print_buf()
This commit is contained in:
parent
6e0643762d
commit
a78b218042
|
@ -124,7 +124,7 @@ void debug_print_ret( const ssl_context *ssl, int level,
|
||||||
|
|
||||||
void debug_print_buf( const ssl_context *ssl, int level,
|
void debug_print_buf( const ssl_context *ssl, int level,
|
||||||
const char *file, int line, const char *text,
|
const char *file, int line, const char *text,
|
||||||
unsigned char *buf, size_t len );
|
const unsigned char *buf, size_t len );
|
||||||
|
|
||||||
#if defined(POLARSSL_BIGNUM_C)
|
#if defined(POLARSSL_BIGNUM_C)
|
||||||
void debug_print_mpi( const ssl_context *ssl, int level,
|
void debug_print_mpi( const ssl_context *ssl, int level,
|
||||||
|
|
|
@ -120,7 +120,7 @@ void debug_print_ret( const ssl_context *ssl, int level,
|
||||||
|
|
||||||
void debug_print_buf( const ssl_context *ssl, int level,
|
void debug_print_buf( const ssl_context *ssl, int level,
|
||||||
const char *file, int line, const char *text,
|
const char *file, int line, const char *text,
|
||||||
unsigned char *buf, size_t len )
|
const unsigned char *buf, size_t len )
|
||||||
{
|
{
|
||||||
char str[512];
|
char str[512];
|
||||||
char txt[17];
|
char txt[17];
|
||||||
|
|
|
@ -1118,7 +1118,7 @@ static int ssl_parse_hello_verify_request( ssl_context *ssl )
|
||||||
* opaque cookie<0..2^8-1>;
|
* opaque cookie<0..2^8-1>;
|
||||||
* } HelloVerifyRequest;
|
* } HelloVerifyRequest;
|
||||||
*/
|
*/
|
||||||
SSL_DEBUG_BUF( 3, "server version", (unsigned char *) p, 2 );
|
SSL_DEBUG_BUF( 3, "server version", p, 2 );
|
||||||
ssl_read_version( &major_ver, &minor_ver, ssl->transport, p );
|
ssl_read_version( &major_ver, &minor_ver, ssl->transport, p );
|
||||||
p += 2;
|
p += 2;
|
||||||
|
|
||||||
|
@ -1140,7 +1140,7 @@ static int ssl_parse_hello_verify_request( ssl_context *ssl )
|
||||||
}
|
}
|
||||||
|
|
||||||
cookie_len = *p++;
|
cookie_len = *p++;
|
||||||
SSL_DEBUG_BUF( 3, "cookie", (unsigned char *) p, cookie_len );
|
SSL_DEBUG_BUF( 3, "cookie", p, cookie_len );
|
||||||
|
|
||||||
polarssl_free( ssl->handshake->verify_cookie );
|
polarssl_free( ssl->handshake->verify_cookie );
|
||||||
|
|
||||||
|
|
|
@ -2342,7 +2342,7 @@ static int ssl_write_hello_verify_request( ssl_context *ssl )
|
||||||
* version looks like the most interoperable thing to do. */
|
* version looks like the most interoperable thing to do. */
|
||||||
ssl_write_version( ssl->major_ver, ssl->minor_ver,
|
ssl_write_version( ssl->major_ver, ssl->minor_ver,
|
||||||
ssl->transport, p );
|
ssl->transport, p );
|
||||||
SSL_DEBUG_BUF( 3, "server version", (unsigned char *) p, 2 );
|
SSL_DEBUG_BUF( 3, "server version", p, 2 );
|
||||||
p += 2;
|
p += 2;
|
||||||
|
|
||||||
/* If we get here, f_cookie_check is not null */
|
/* If we get here, f_cookie_check is not null */
|
||||||
|
|
Loading…
Reference in a new issue