Corrected a small bug (!): the -C=value was not processed correctly

as somebody forgot one character when counting up to ... 3 :-)))
This commit is contained in:
evomarc 2000-11-30 06:38:15 +00:00
commit 9af974070a

View file

@ -179,7 +179,7 @@ void eoParser::readFrom(istream& is)
} }
else // it should be a char else // it should be a char
{ {
string value(str.begin() + 2, str.end()); string value(str.begin() + 3, str.end());
shortNameMap[str[1]] = value; shortNameMap[str[1]] = value;
} }
} }