Fixed a typo in kim_preferences.c which prevented
authorAlexandra Ellwood <lxs@mit.edu>
Thu, 25 Sep 2008 20:29:34 +0000 (20:29 +0000)
committerAlexandra Ellwood <lxs@mit.edu>
Thu, 25 Sep 2008 20:29:34 +0000 (20:29 +0000)
the fix to kim_preferences_remove_favorite_identity
from working.

(Accidentally tested in one source tree and committed
from another.  whoops.)

ticket: 6055

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20754 dc483132-0cff-0310-8789-dd5450dbe970

src/kim/lib/kim_preferences.c

index 46600922f27a17f0bf29901374e2ad70f6b97c8f..b2e740d9e86d998015a33a7da7aed8580253259d 100644 (file)
@@ -327,7 +327,7 @@ kim_error kim_favorites_remove_identity (kim_favorites io_favorites,
             
             err = kim_identity_compare (in_identity, identity, &comparison);
             
-            if (!err && kim_comparison_is_equal (comparison)) {
+            if (!err && kim_comparison_is_equal_to (comparison)) {
                 kim_error terr = KIM_NO_ERROR;
                 kim_count new_count = io_favorites->count - 1;