1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-01 10:06:53 +03:00

Rename a debug function

This commit is contained in:
Manuel Pégourié-Gonnard
2015-06-29 20:14:19 +02:00
parent 80d627a5ae
commit a16e7c468c
3 changed files with 4 additions and 4 deletions

View File

@ -59,7 +59,7 @@ void debug_print_msg_threshold( int threshold, int level, char *file, int line,
mbedtls_debug_set_threshold( threshold );
mbedtls_ssl_conf_dbg( &conf, string_debug, &buffer);
mbedtls_debug_print_fmt( &ssl, level, file, line,
mbedtls_debug_print_msg( &ssl, level, file, line,
"Text message, 2 == %d", 2 );
TEST_ASSERT( strcmp( buffer.buf, result_str ) == 0 );