mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 06:03:09 +00:00
[mbedTLS] Fix incorrect cert pinning with client_unsafe
This commit is contained in:
parent
db76de5de8
commit
ccae47ab66
@ -153,7 +153,7 @@ Error TLSContextMbedTLS::init_client(int p_transport, const String &p_hostname,
|
||||
|
||||
int authmode = MBEDTLS_SSL_VERIFY_REQUIRED;
|
||||
bool unsafe = p_options->is_unsafe_client();
|
||||
if (unsafe && p_options->get_trusted_ca_chain().is_valid()) {
|
||||
if (unsafe && p_options->get_trusted_ca_chain().is_null()) {
|
||||
authmode = MBEDTLS_SSL_VERIFY_NONE;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user