# HG changeset patch # User Stu Tomlinson # Date 1107958805 0 # Node ID a4c6f8deac9605aff0f52cb94067ce80198c77ae # Parent b953704d4d6c6659e150703ab44144eba7805a79 [gaim-migrate @ 11985] Fix for adding MSN buddies to your buddy list, then not being notified that they added you to their list, resulting in them not seeing your status because they don't get added to either the allow or the block list. This bug existed for a while, but only recently did reporters with enough clue to describe how to reproduce it appear. committer: Tailor Script diff -r b953704d4d6c -r a4c6f8deac96 src/protocols/msn/userlist.c --- a/src/protocols/msn/userlist.c Tue Feb 08 21:24:57 2005 +0000 +++ b/src/protocols/msn/userlist.c Wed Feb 09 14:20:05 2005 +0000 @@ -267,8 +267,7 @@ "%s has added you to his or her contact list.\n", passport); - if (!(user->list_op & (MSN_LIST_AL_OP | MSN_LIST_BL_OP | - MSN_LIST_FL_OP))) + if (!(user->list_op & (MSN_LIST_AL_OP | MSN_LIST_BL_OP))) { got_new_entry(gc, passport, friendly); } @@ -388,8 +387,7 @@ /* These are users who have us on their contact list. */ /* TODO: what does store name is when this happens? */ - if (!(list_op & (MSN_LIST_AL_OP | MSN_LIST_BL_OP | - MSN_LIST_FL_OP))) + if (!(list_op & (MSN_LIST_AL_OP | MSN_LIST_BL_OP))) { got_new_entry(gc, passport, store); }