Changeset d0752e8 for protocols/msn
- Timestamp:
- 2012-09-22T12:12:12Z (12 years ago)
- Branches:
- master
- Children:
- 11ec078
- Parents:
- 55ccc9a0
- Location:
- protocols/msn
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/ns.c
r55ccc9a0 rd0752e8 683 683 char *psm_text = NULL; 684 684 685 ubx = xt_from_string( msg );685 ubx = xt_from_string( msg, msglen ); 686 686 if( ubx && strcmp( ubx->name, "Data" ) == 0 && 687 687 ( psm = xt_find_node( ubx->children, "PSM" ) ) ) … … 695 695 struct xt_node *adl, *d, *c; 696 696 697 if( !( adl = xt_from_string( msg ) ) )697 if( !( adl = xt_from_string( msg, msglen ) ) ) 698 698 return 1; 699 699 -
protocols/msn/soap.c
r55ccc9a0 rd0752e8 229 229 if( payload ) 230 230 { 231 struct xt_node *xt = xt_from_string( payload );231 struct xt_node *xt = xt_from_string( payload, 0 ); 232 232 if( xt ) 233 233 xt_print( xt );
Note: See TracChangeset
for help on using the changeset viewer.