mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[NTOSKRNL] Allow more chars in ExpTagAllowPrint().
Dedicated to Mark
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user