Changeset 4eb75b2
- Timestamp:
- 2010-11-20T11:31:39Z (14 years ago)
- Branches:
- master
- Children:
- 6d544a1
- Parents:
- 10685d3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/soap.c
r10685d3 r4eb75b2 872 872 { 873 873 GSList *l; 874 int wtf = 0; 874 875 875 876 for( l = soap_req->ic->bee->users; l; l = l->next ) 876 877 { 877 878 struct bee_user *bu = l->data; 879 struct msn_buddy_data *bd = bu->data; 878 880 879 881 if( bu->ic == soap_req->ic ) 880 882 msn_buddy_ask( bu ); 881 } 883 884 if( ( bd->flags & ( MSN_BUDDY_AL | MSN_BUDDY_BL ) ) == 885 ( MSN_BUDDY_AL | MSN_BUDDY_BL ) ) 886 { 887 bd->flags &= ~MSN_BUDDY_BL; 888 wtf++; 889 } 890 } 891 892 if( wtf ) 893 imcb_log( soap_req->ic, "Warning: %d contacts were in both your " 894 "block and your allow list. Assuming they're all " 895 "allowed. Use the official WLM client once to fix " 896 "this.", wtf ); 882 897 883 898 msn_auth_got_contact_list( soap_req->ic );
Note: See TracChangeset
for help on using the changeset viewer.