mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-22 05:46:41 +01:00
Fix one debug message
This commit is contained in:
parent
bcb0460224
commit
b076116e14
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue