# HG changeset patch # User Sean Egan # Date 1022903684 0 # Node ID 5a56d8874c40a200b3e56637e4285af0d30a1ee5 # Parent f50db65fda5ff6970dcee1a0f2d2c5944c545fa5 [gaim-migrate @ 3313] That's what I meant. committer: Tailor Script diff -r f50db65fda5f -r 5a56d8874c40 src/protocols/msn/msn.c --- a/src/protocols/msn/msn.c Sat Jun 01 03:35:25 2002 +0000 +++ b/src/protocols/msn/msn.c Sat Jun 01 03:54:44 2002 +0000 @@ -2286,7 +2286,7 @@ return; } - if ((dupl = g_slist_find(gc->deny, who))) { + if ((dupl = g_slist_find_custom(gc->deny, who, strcmp))) { debug_printf("MSN: Moving %s from BL to AL\n", who); gc->deny = g_slist_remove(gc->deny, dupl); g_snprintf(buf, sizeof(buf), "REM %d BL %s\r\n", ++md->trId, who); @@ -2338,7 +2338,7 @@ return; } - if ((dupl = g_slist_find(gc->permit, who))) { + if ((dupl = g_slist_find_custom(gc->permit, who, strcmp))) { debug_printf("MSN: Moving %s from AL to BL\n", who); gc->permit = g_slist_remove(gc->permit, dupl); g_snprintf(buf, sizeof(buf), "REM %d AL %s\r\n", ++md->trId, who);