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
1 changed files with 6 additions and 0 deletions

View File

@ -528,6 +528,12 @@ static bool eap_tls_tunnel_init(struct eap_state *eap)
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;
}