mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-06-01 19:00:20 +00:00
Fix one debug message
This commit is contained in:
parent
bcb0460224
commit
b076116e14
|
@ -2482,7 +2482,7 @@ static int ssl_write_certificate_request( mbedtls_ssl_context *ssl )
|
||||||
memcpy( p, crt->subject_raw.p, dn_size );
|
memcpy( p, crt->subject_raw.p, dn_size );
|
||||||
p += dn_size;
|
p += dn_size;
|
||||||
|
|
||||||
MBEDTLS_SSL_DEBUG_BUF( 3, "requested DN", p, dn_size );
|
MBEDTLS_SSL_DEBUG_BUF( 3, "requested DN", p - dn_size, dn_size );
|
||||||
|
|
||||||
total_dn_size += 2 + dn_size;
|
total_dn_size += 2 + dn_size;
|
||||||
crt = crt->next;
|
crt = crt->next;
|
||||||
|
|
Loading…
Reference in a new issue