EapPeerGetUIContext()/eap::session::get_ui_context() completed

This commit is contained in:
Simon Rozman 2016-07-20 12:04:11 +02:00
parent 07b4ce988b
commit b7ea2f7a72

View File

@ -287,11 +287,10 @@ namespace eap
_Out_ interactive_request_type &req,
_Out_ EAP_ERROR **ppEapError)
{
UNREFERENCED_PARAMETER(req);
assert(ppEapError);
UNREFERENCED_PARAMETER(ppEapError);
*ppEapError = m_module.make_error(ERROR_NOT_SUPPORTED, _T(__FUNCTION__) _T(" Not supported."));
return false;
req = m_intreq;
return true;
}
@ -368,5 +367,6 @@ namespace eap
module &m_module; ///< Reference of the EAP module
config_providers_type m_cfg; ///< Session configuration
credentials_type m_cred; ///< User credentials
interactive_request_type m_intreq; ///< Interactive UI request data
};
}