- Timestamp:
- 2010-08-15T17:19:06Z (14 years ago)
- Branches:
- master
- Children:
- e0e1546
- Parents:
- 9679fd8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/soap.c
r9679fd8 r9b01339 683 683 struct msn_buddy_data *bd; 684 684 struct xt_node *p; 685 char *id = NULL, *type = NULL, *handle = NULL, 685 char *id = NULL, *type = NULL, *handle = NULL, *is_msgr = "false", 686 686 *display_name = NULL, *group_id = NULL; 687 687 struct msn_soap_req_data *soap_req = data; … … 697 697 if( ( p = xt_find_node( node->children, "displayName" ) ) ) 698 698 display_name = p->text; 699 if( ( p = xt_find_node( node->children, "isMessengerUser" ) ) ) 700 is_msgr = p->text; 699 701 if( ( p = xt_find_path( node, "groupIds/guid" ) ) ) 700 702 group_id = p->text; … … 709 711 } 710 712 711 if( handle == NULL )713 if( !bool2int( is_msgr ) || handle == NULL ) 712 714 return XT_HANDLED; 713 715
Note: See TracChangeset
for help on using the changeset viewer.