1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

Fix typo in debug_print_msg()

This commit is contained in:
Paul Bakker
2014-05-06 10:29:28 +02:00
parent 770268f2b3
commit 5593f7caae
2 changed files with 5 additions and 1 deletions

View File

@ -88,7 +88,7 @@ void debug_print_msg( const ssl_context *ssl, int level,
if( debug_log_mode == POLARSSL_DEBUG_LOG_RAW )
{
ssl->f_dbg( ssl->p_dbg, level, str );
ssl->f_dbg( ssl->p_dbg, level, text );
return;
}