mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-08-07 06:42:56 +03:00
Programs adapted to use polarssl_strerror() instead of error_strerror()
This commit is contained in:
@@ -65,7 +65,7 @@ int main( int argc, char *argv[] )
|
||||
if( ret != 0 )
|
||||
{
|
||||
char error_buf[200];
|
||||
error_strerror( ret, error_buf, 200 );
|
||||
polarssl_strerror( ret, error_buf, 200 );
|
||||
printf("Last error was: %d - %s\n\n", ret, error_buf );
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user