1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

remove useless parentheses

Signed-off-by: Johan Pascal <johan.pascal@belledonne-communications.com>
This commit is contained in:
Johan Pascal
2020-10-29 10:49:21 +01:00
parent c3ccd98a91
commit 5fbe9e7ac0
2 changed files with 4 additions and 4 deletions

View File

@ -3868,8 +3868,8 @@ handshake:
mbedtls_dtls_srtp_info dtls_srtp_negotiation_result;
mbedtls_ssl_get_dtls_srtp_negotiation_result( &ssl, &dtls_srtp_negotiation_result );
if( ( dtls_srtp_negotiation_result.chosen_dtls_srtp_profile
== MBEDTLS_TLS_SRTP_UNSET ) )
if( dtls_srtp_negotiation_result.chosen_dtls_srtp_profile
== MBEDTLS_TLS_SRTP_UNSET )
{
mbedtls_printf( " Unable to negotiate "
"the use of DTLS-SRTP\n" );