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

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 6 11:52:59 MST 2006 - jnorman@novell.com
- Bug 147801. Fix to add additional key-value pairs
-------------------------------------------------------------------
Wed Feb 1 9:47:59 MST 2006 - jnorman@novell.com
- Rename CASA-1.5.glade to CASA.glade
-------------------------------------------------------------------
Fri Jan 30 10:34:59 MST 2006 - cmashayekhi@novell.com

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));
}
}
}