EAP-GTC implementation continues...

This commit is contained in:
2017-01-31 13:54:55 +01:00
parent f9083dc300
commit d508a6c398
6 changed files with 13 additions and 13 deletions

View File

@@ -30,7 +30,7 @@ using namespace winstd;
eap::config_method_eapgtc::config_method_eapgtc(_In_ module &mod, _In_ unsigned int level) : config_method_with_cred(mod, level)
{
m_cred.reset(new credentials(mod));
m_cred.reset(new credentials_identity(mod));
}
@@ -84,5 +84,5 @@ const wchar_t* eap::config_method_eapgtc::get_method_str() const
eap::credentials* eap::config_method_eapgtc::make_credentials() const
{
return new eap::credentials(m_module);
return new eap::credentials_identity(m_module);
}