aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/msn/soap.c
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/msn/soap.c')
-rw-r--r--protocols/msn/soap.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/protocols/msn/soap.c b/protocols/msn/soap.c
index cd54858f..8cc241b8 100644
--- a/protocols/msn/soap.c
+++ b/protocols/msn/soap.c
@@ -476,9 +476,17 @@ static xt_status msn_soap_memlist_member( struct xt_node *node, gpointer data )
else if( strcmp( role, "Block" ) == 0 )
bd->flags |= MSN_BUDDY_BL;
else if( strcmp( role, "Reverse" ) == 0 )
+ {
bd->flags |= MSN_BUDDY_RL;
+ msn_buddy_ask( bu );
+ }
else if( strcmp( role, "Pending" ) == 0 )
+ {
bd->flags |= MSN_BUDDY_PL;
+ msn_buddy_ask( bu );
+ }
+
+ printf( "%s %d\n", handle, bd->flags );
return XT_HANDLED;
}