Add missing file from previous commit.

This commit is contained in:
David Nusinow 2008-03-02 18:36:25 -05:00
parent b5ce0e1d0b
commit f7ab2d3821

View File

@ -380,11 +380,20 @@ again:
if (c == '0')
if ((configBuf[configPos] == 'x') ||
(configBuf[configPos] == 'X'))
{
base = 16;
val.numType = PARSE_HEX;
}
else
{
base = 8;
val.numType = PARSE_OCTAL;
}
else
{
base = 10;
val.numType = PARSE_DECIMAL;
}
configRBuf[0] = c;
i = 1;