changeset 10583:a4c6f8deac96

[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 <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Wed, 09 Feb 2005 14:20:05 +0000
parents b953704d4d6c
children 7de819b5ed68
files src/protocols/msn/userlist.c
diffstat 1 files changed, 2 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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);
 		}