Changeset 2730c79 for protocols/msn
- Timestamp:
- 2015-05-13T07:01:28Z (9 years ago)
- Branches:
- master
- Children:
- a733669
- Parents:
- 5014380
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/ns.c
r5014380 r2730c79 623 623 char l[4]; 624 624 625 if ((bd->flags & 7) == 0 || (bd->flags & MSN_BUDDY_ADL_SYNCED)) {625 if ((bd->flags & (MSN_BUDDY_FL | MSN_BUDDY_AL)) == 0 || (bd->flags & MSN_BUDDY_ADL_SYNCED)) { 626 626 return FALSE; 627 627 } … … 641 641 } 642 642 643 g_snprintf(l, sizeof(l), "%d", bd->flags & 7);643 g_snprintf(l, sizeof(l), "%d", bd->flags & (MSN_BUDDY_FL | MSN_BUDDY_AL)); 644 644 c = xt_new_node("c", NULL, NULL); 645 645 xt_add_attr(c, "n", handle); … … 694 694 struct msn_buddy_data *bd = bu->data; 695 695 696 if (bu->ic != ic || (bd->flags & 7) == 0) {696 if (bu->ic != ic || (bd->flags & (MSN_BUDDY_FL | MSN_BUDDY_AL)) == 0) { 697 697 continue; 698 698 }
Note: See TracChangeset
for help on using the changeset viewer.