3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-04 02:18:49 +02:00

eap-tls-common: Call the new l_tls_start

This commit is contained in:
Andrew Zaborowski 2018-12-19 02:00:43 +01:00 committed by Denis Kenzior
parent 6bf365d9a4
commit 8f9408efc7

View File

@ -528,6 +528,12 @@ static bool eap_tls_tunnel_init(struct eap_state *eap)
return false; return false;
} }
if (!l_tls_start(eap_tls->tunnel)) {
l_error("%s: Failed to start the TLS client",
eap_get_method_name(eap));
return false;
}
return true; return true;
} }