From 303350dec0fcd7a5ef8baa1747633ea06bc90f82 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Mon, 5 Dec 2016 12:42:35 +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 a3a36d7..596ed8f 100644 --- a/lib/TTLS/src/Module.cpp +++ b/lib/TTLS/src/Module.cpp @@ -272,7 +272,7 @@ void eap::peer_ttls::end_session(_In_ EAP_SESSION_HANDLE hSession) // End the session. auto s = static_cast(hSession); - //s->end(ppEapError); + s->m_method->end_session(); delete s; }