mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-25 16:05:43 +01:00
Fixed multiple DN size
This commit is contained in:
parent
df5069cb97
commit
bc3d98469f
@ -753,7 +753,7 @@ static int ssl_write_certificate_request( ssl_context *ssl )
|
||||
p += 2;
|
||||
crt = ssl->ca_chain;
|
||||
|
||||
total_dn_size = 2;
|
||||
total_dn_size = 0;
|
||||
while( crt != NULL )
|
||||
{
|
||||
if( p - buf > 4096 )
|
||||
@ -767,7 +767,7 @@ static int ssl_write_certificate_request( ssl_context *ssl )
|
||||
|
||||
SSL_DEBUG_BUF( 3, "requested DN", p, dn_size );
|
||||
|
||||
total_dn_size += dn_size;
|
||||
total_dn_size += 2 + dn_size;
|
||||
crt = crt->next;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user