mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-09 16:25:30 +00:00
Fix default hostname for verification used in ssl_client1
This commit is contained in:
parent
3ea1af214c
commit
45bbb21799
|
@ -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