[NTOSKRNL] Allow more chars in ExpTagAllowPrint().

Dedicated to Mark
This commit is contained in:
Pierre Schweitzer 2018-02-17 15:06:29 +01:00
parent 69f51d1533
commit 01fcb02880
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B

View file

@ -468,7 +468,8 @@ ExpTagAllowPrint(CHAR Tag)
if ((Tag >= 'a' && Tag <= 'z') ||
(Tag >= 'A' && Tag <= 'Z') ||
(Tag >= '0' && Tag <= '9') ||
Tag == ' ')
Tag == ' ' || Tag == '=' ||
Tag == '?' || Tag == '@')
{
return TRUE;
}