credentials::get_name() fixed to return "<blank>" for empty credentials
This commit is contained in:
parent
ee8410bdb9
commit
4834c9e4da
@ -97,7 +97,7 @@ bool eap::credentials::load(_In_ IXMLDOMNode *pConfigRoot, _Out_ EAP_ERROR **ppE
|
||||
|
||||
tstring eap::credentials::get_name() const
|
||||
{
|
||||
return get_identity();
|
||||
return !empty() ? get_identity() : _T("<blank>");
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user