Fixe for EISAID macro - enforce "uppercase-only" rule on first three

chars


date	2004.10.14.22.49.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 16:06:52 +00:00
parent d096e0d489
commit 0a77b08fd9

View File

@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: aslopcode - AML opcode generation
* $Revision: 1.57 $
* $Revision: 1.58 $
*
*****************************************************************************/
@ -476,11 +476,11 @@ OpcDoEisaId (
for (i = 0; i < 7; i++)
{
/* First 3 characters must be letters */
/* First 3 characters must be uppercase letters */
if (i < 3)
{
if (!isalpha (InString[i]))
if (!isupper (InString[i]))
{
Status = AE_BAD_PARAMETER;
}