Change memcmp call

Previous call used sizeof() function which is not needed.

Signed-off-by: Thomas Daubney <thomas.daubney@arm.com>
This commit is contained in:
Thomas Daubney 2022-05-23 16:11:31 +01:00
parent 70c0088239
commit 413550c529

View file

@ -195,7 +195,7 @@ int main( int argc, char *argv[] )
mbedtls_printf( " . Check if both calculated secrets are equal..." );
fflush( stdout );
ret = memcmp( secret_srv, secret_cli, sizeof( srv_olen ) );
ret = memcmp( secret_srv, secret_cli, srv_olen );
if( ret != 0 || ( cli_olen != srv_olen ) )
{
mbedtls_printf( " failed\n ! Shared secrets not equal.\n" );