# HG changeset patch # User Sean Egan # Date 1035247558 0 # Node ID a3aca202aa04edd96adebe634da742fc2e830f80 # Parent c2394f3520150b505ffae99901c8db6e2a9813cd [gaim-migrate @ 3922] I lose. committer: Tailor Script diff -r c2394f352015 -r a3aca202aa04 src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Tue Oct 22 00:32:47 2002 +0000 +++ b/src/protocols/oscar/oscar.c Tue Oct 22 00:45:58 2002 +0000 @@ -4509,7 +4509,20 @@ } aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_DENYADD, buf); break; - default: + case 5: + GList *g = gc->groups; + at = 0; + while (g) { + list = ((struct group *)g->data)->members; + while (list) { + at += g_snprintf(buf + at, sizeof(buf) - at, "%s&", (char *)list->data); + list = list->next; + } + g = g->next; + } + aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_PERMITADD, buf); + break; + default: break; } signoff_blocked(gc);