mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 11:45:42 +01:00
Fix typo in debug_print_msg()
This commit is contained in:
parent
770268f2b3
commit
5593f7caae
@ -1,5 +1,9 @@
|
|||||||
PolarSSL ChangeLog (Sorted per branch, date)
|
PolarSSL ChangeLog (Sorted per branch, date)
|
||||||
|
|
||||||
|
= PolarSSL 1.3 branch
|
||||||
|
Bugfix
|
||||||
|
* Fix in debug_print_msg()
|
||||||
|
|
||||||
= PolarSSL 1.3.7 released on 2014-05-02
|
= PolarSSL 1.3.7 released on 2014-05-02
|
||||||
Features
|
Features
|
||||||
* debug_set_log_mode() added to determine raw or full logging
|
* debug_set_log_mode() added to determine raw or full logging
|
||||||
|
@ -88,7 +88,7 @@ void debug_print_msg( const ssl_context *ssl, int level,
|
|||||||
|
|
||||||
if( debug_log_mode == POLARSSL_DEBUG_LOG_RAW )
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user