1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-08 17:42:09 +03:00

Fix build failure for thread config

This commit is contained in:
Brian Murray
2016-09-13 15:58:46 -07:00
committed by Simon Butcher
parent 5168618294
commit 7b07e0e4b4
3 changed files with 14 additions and 6 deletions

View File

@@ -279,8 +279,11 @@ int main( int argc, char *argv[] )
#endif
#if defined(MBEDTLS_CMAC_C) && ( defined(MBEDTLS_AES_C) || defined(MBEDTLS_DES_C) )
if( ( ret = mbedtls_cmac_self_test( v ) ) != 0 )
return( ret );
if( ( mbedtls_cmac_self_test( v ) ) != 0 )
{
suites_failed++;
}
suites_tested++;
#endif
#if defined(MBEDTLS_BASE64_C)