mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-03 20:55:36 +00: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 defined(POLARSSL_ECDSA_C)
|
||||||
if( pk_alg == POLARSSL_PK_ECDSA )
|
if( pk_alg == POLARSSL_PK_ECDSA &&
|
||||||
{
|
! ssl_key_matches_curves( cur->key, ssl->handshake->curves ) )
|
||||||
if( ssl_key_matches_curves( cur->key, ssl->handshake->curves ) )
|
continue;
|
||||||
break;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
#endif
|
#endif
|
||||||
break;
|
|
||||||
|
/* If we get there, we got a winner */
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( cur == NULL )
|
if( cur == NULL )
|
||||||
|
|
Loading…
Reference in a new issue