diff --git a/src/keytrans.C b/src/keytrans.C index eeae27e9..5be62e89 100644 --- a/src/keytrans.C +++ b/src/keytrans.C @@ -193,7 +193,8 @@ void KeytabReader::getSymbol() } if (strchr("+-:",cc)) { - res = (char)cc; + res = ""; + res = res + (char)cc; getCc(); sym = SYMOpr; return; }