mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-25 15:05:45 +01:00
Minor refactoring
This commit is contained in:
parent
d68b65199f
commit
846ba473af
@ -809,14 +809,13 @@ static int ssl_pick_cert( ssl_context *ssl,
|
||||
}
|
||||
|
||||
#if defined(POLARSSL_ECDSA_C)
|
||||
if( pk_alg == POLARSSL_PK_ECDSA )
|
||||
{
|
||||
if( ssl_key_matches_curves( cur->key, ssl->handshake->curves ) )
|
||||
break;
|
||||
}
|
||||
else
|
||||
if( pk_alg == POLARSSL_PK_ECDSA &&
|
||||
! ssl_key_matches_curves( cur->key, ssl->handshake->curves ) )
|
||||
continue;
|
||||
#endif
|
||||
break;
|
||||
|
||||
/* If we get there, we got a winner */
|
||||
break;
|
||||
}
|
||||
|
||||
if( cur == NULL )
|
||||
|
Loading…
Reference in New Issue
Block a user