comparison libpurple/protocols/msn/notification.c @ 23938:b9d4d8a77fef

disapproval of revision 'd50e4b01c210ebbcd8f8d5a001fa72450e021a97'
author Ka-Hing Cheung <khc@hxbc.us>
date Sun, 12 Oct 2008 22:00:38 +0000
parents 2d7a8d15f3a3
children 94fa764b47e8
comparison
equal deleted inserted replaced
23937:2d7a8d15f3a3 23938:b9d4d8a77fef
611 adl_node = xmlnode_new("ml"); 611 adl_node = xmlnode_new("ml");
612 adl_node->child = NULL; 612 adl_node->child = NULL;
613 xmlnode_set_attrib(adl_node, "l", "1"); 613 xmlnode_set_attrib(adl_node, "l", "1");
614 614
615 /*get the userlist*/ 615 /*get the userlist*/
616 for (l = session->userlist->users; l != NULL; l = l->next){ 616 for (l = session->userlist->users; l != NULL; l = l->next) {
617 user = l->data; 617 user = l->data;
618 618
619 /* skip RL & PL during initial dump */ 619 /* skip RL & PL during initial dump */
620 if (!(user->list_op & MSN_LIST_OP_MASK)) 620 if (!(user->list_op & MSN_LIST_OP_MASK))
621 continue;
622
623 if (!strcmp(user->passport, "messenger@microsoft.com"))
621 continue; 624 continue;
622 625
623 msn_add_contact_xml(session, adl_node, user->passport, 626 msn_add_contact_xml(session, adl_node, user->passport,
624 user->list_op & MSN_LIST_OP_MASK, user->networkid); 627 user->list_op & MSN_LIST_OP_MASK, user->networkid);
625 628