# HG changeset patch # User Sean Egan # Date 1015474345 0 # Node ID 63628fddf1212e8f76f59cec3d42f363777694e9 # Parent f0e8770d786dbee4615a0dced8d72e1ef8228216 [gaim-migrate @ 3031] MSN won't bug you to move people from your deny list to your allow list--a bug introduced yesterday. committer: Tailor Script diff -r f0e8770d786d -r 63628fddf121 src/protocols/msn/msn.c --- a/src/protocols/msn/msn.c Thu Mar 07 02:19:38 2002 +0000 +++ b/src/protocols/msn/msn.c Thu Mar 07 04:12:25 2002 +0000 @@ -848,6 +848,7 @@ char *which, *who, *friend, *tmp = buf; struct msn_add_permit *ap; /* for any as yet undealt with buddies who've added you to their buddy list when you were off-line. How dare they! */ GSList *perm = gc->permit; /* current permit list */ + GSList *denyl = gc->deny; char msg[MSN_BUF_LEN]; int new = 1; int pos, tot; @@ -882,7 +883,11 @@ new = 0; perm = perm->next; } - + while(denyl) { + if(!g_strcasecmp(denyl->data, who)) + new = 0; + denyl = denyl->next; + } if(new) { debug_printf("Unresolved MSN RL entry\n"); ap = g_new0(struct msn_add_permit, 1);