From 8f9408efc763dfbee3b49cb53d1bddb28af523ef Mon Sep 17 00:00:00 2001 From: Andrew Zaborowski Date: Wed, 19 Dec 2018 02:00:43 +0100 Subject: [PATCH] eap-tls-common: Call the new l_tls_start --- src/eap-tls-common.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/eap-tls-common.c b/src/eap-tls-common.c index 018fcf1f..cbecd4b7 100644 --- a/src/eap-tls-common.c +++ b/src/eap-tls-common.c @@ -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; }