From 9af974070af197674ed97de32628ebdddd810e3c Mon Sep 17 00:00:00 2001 From: evomarc Date: Thu, 30 Nov 2000 06:38:15 +0000 Subject: [PATCH] Corrected a small bug (!): the -C=value was not processed correctly as somebody forgot one character when counting up to ... 3 :-))) --- eo/src/utils/eoParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo/src/utils/eoParser.cpp b/eo/src/utils/eoParser.cpp index 4888e675..fb5c88b8 100644 --- a/eo/src/utils/eoParser.cpp +++ b/eo/src/utils/eoParser.cpp @@ -179,7 +179,7 @@ void eoParser::readFrom(istream& is) } else // it should be a char { - string value(str.begin() + 2, str.end()); + string value(str.begin() + 3, str.end()); shortNameMap[str[1]] = value; } }