Minor refactoring

This commit is contained in:
Manuel Pégourié-Gonnard 2015-01-08 13:54:38 +01:00
parent d68b65199f
commit 846ba473af

View File

@ -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 )