- Timestamp:
- 2010-08-21T17:27:32Z (14 years ago)
- Branches:
- master
- Children:
- 4022b68
- Parents:
- a366cca
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/soap.c
ra366cca r327af51 554 554 bd->flags |= MSN_BUDDY_BL; 555 555 else if( strcmp( role, "Reverse" ) == 0 ) 556 {557 556 bd->flags |= MSN_BUDDY_RL; 558 msn_buddy_ask( bu );559 }560 557 else if( strcmp( role, "Pending" ) == 0 ) 561 {562 558 bd->flags |= MSN_BUDDY_PL; 563 msn_buddy_ask( bu ); 564 } 565 566 printf( "%s %d\n", handle, bd->flags ); 559 560 printf( "%p %s %d\n", bu, handle, bd->flags ); 567 561 568 562 return XT_HANDLED; … … 783 777 static int msn_soap_addressbook_handle_response( struct msn_soap_req_data *soap_req ) 784 778 { 779 GSList *l; 780 781 for( l = soap_req->ic->bee->users; l; l = l->next ) 782 { 783 struct bee_user *bu = l->data; 784 785 if( bu->ic == soap_req->ic ) 786 msn_buddy_ask( bu ); 787 } 788 785 789 msn_auth_got_contact_list( soap_req->ic ); 790 786 791 return MSN_SOAP_OK; 787 792 }
Note: See TracChangeset
for help on using the changeset viewer.