This commit is contained in:
Simon Rozman 2016-09-28 10:59:48 +02:00
parent 2684c6b7de
commit 3983b0933e

View File

@ -150,8 +150,8 @@ eap::config_method& eap::config_method::operator=(_Inout_ config_method &&other)
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
eap::config_method_with_cred::config_method_with_cred(_In_ module &mod, _In_ unsigned int level) : eap::config_method_with_cred::config_method_with_cred(_In_ module &mod, _In_ unsigned int level) :
m_allow_save(true), m_allow_save (true),
m_use_cred(false), m_use_cred (false),
m_last_status(status_success), m_last_status(status_success),
config_method(mod, level) config_method(mod, level)
{ {
@ -162,9 +162,9 @@ eap::config_method_with_cred::config_method_with_cred(_In_ const config_method_w
m_allow_save (other.m_allow_save ), m_allow_save (other.m_allow_save ),
m_use_cred (other.m_use_cred ), m_use_cred (other.m_use_cred ),
m_cred (other.m_cred ? (credentials*)other.m_cred->clone() : nullptr), m_cred (other.m_cred ? (credentials*)other.m_cred->clone() : nullptr),
m_last_status (other.m_last_status ), m_last_status(other.m_last_status ),
m_last_msg (other.m_last_msg ), m_last_msg (other.m_last_msg ),
config_method (other ) config_method(other )
{ {
} }