mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
Cedar: allow @ in username
This commit is contained in:
parent
974f18505b
commit
a1722ac2e0
@ -348,6 +348,7 @@ UINT PolicyNum()
|
||||
// Check the name is valid for account name
|
||||
bool IsUserName(char *name)
|
||||
{
|
||||
UINT i, len;
|
||||
char tmp[MAX_SIZE];
|
||||
// Validate arguments
|
||||
if (name == NULL)
|
||||
@ -360,7 +361,8 @@ bool IsUserName(char *name)
|
||||
|
||||
Trim(name);
|
||||
|
||||
if (StrLen(name) == 0)
|
||||
len = StrLen(name);
|
||||
if (len == 0)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
@ -370,14 +372,12 @@ bool IsUserName(char *name)
|
||||
return true;
|
||||
}
|
||||
|
||||
if (IsSafeStr(name) == false)
|
||||
for (i = 0; i < len; i++)
|
||||
{
|
||||
if (IsSafeChar(name[i]) == false && name[i] != '@')
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if (StrCmpi(name, "link") == 0)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if (StrCmpi(name, LINK_USER_NAME) == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user