Bug 147801. Fix to add additional key-value pairs

This commit is contained in:
Jim Norman
2006-02-06 18:45:30 +00:00
parent 436dc4093e
commit 75c0ded6bc
2 changed files with 12 additions and 1 deletions

View File

@@ -248,7 +248,8 @@ namespace sscs.verbs
IDictionaryEnumerator etor = (IDictionaryEnumerator)kc.GetAllSecrets();
while(etor.MoveNext())
{
sc.Add((string)etor.Key);
string sID = (string)etor.Key;
sc.Add(sID.Substring(0, sID.Length - 1));
}
}
}