mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 13:58:13 +00:00
Merge remote-tracking branch 'public/pr/1734' into development
This commit is contained in:
commit
688a456f58
1 changed files with 3 additions and 2 deletions
|
@ -962,8 +962,9 @@ static int ssl_async_start( mbedtls_ssl_context *ssl,
|
||||||
|
|
||||||
{
|
{
|
||||||
char dn[100];
|
char dn[100];
|
||||||
mbedtls_x509_dn_gets( dn, sizeof( dn ), &cert->subject );
|
if( mbedtls_x509_dn_gets( dn, sizeof( dn ), &cert->subject ) > 0 )
|
||||||
mbedtls_printf( "Async %s callback: looking for DN=%s\n", op_name, dn );
|
mbedtls_printf( "Async %s callback: looking for DN=%s\n",
|
||||||
|
op_name, dn );
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Look for a private key that matches the public key in cert.
|
/* Look for a private key that matches the public key in cert.
|
||||||
|
|
Loading…
Reference in a new issue