From 281c8a7119184e0b883f04f4f9dbf18488811272 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Mon, 5 Dec 2016 13:17:38 +0100 Subject: [PATCH] eap::peer_ttls::end_session() fixed to call method's end_session() method --- lib/TTLS/src/Module.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/TTLS/src/Module.cpp b/lib/TTLS/src/Module.cpp index cad13e1..9c4c3ae 100644 --- a/lib/TTLS/src/Module.cpp +++ b/lib/TTLS/src/Module.cpp @@ -233,7 +233,7 @@ void eap::peer_ttls::end_session(_In_ EAP_SESSION_HANDLE hSession) // End the session. session *s = static_cast(hSession); - //s->end(ppEapError); + s->m_method->end_session(); delete s; }