mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-04-20 16:32:28 +00:00
Fix default hostname for verification used in ssl_client1
This commit is contained in:
parent
d4940b5355
commit
c60c31226f
|
@ -177,7 +177,7 @@ int main( void )
|
|||
goto exit;
|
||||
}
|
||||
|
||||
if( ( ret = mbedtls_ssl_set_hostname( &ssl, "mbed TLS Server 1" ) ) != 0 )
|
||||
if( ( ret = mbedtls_ssl_set_hostname( &ssl, SERVER_NAME ) ) != 0 )
|
||||
{
|
||||
mbedtls_printf( " failed\n ! mbedtls_ssl_set_hostname returned %d\n\n", ret );
|
||||
goto exit;
|
||||
|
|
Loading…
Reference in a new issue