diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-14 15:50:10 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-14 15:50:10 +0100 |
commit | e5854a80111e337be01cf1e506073a231fac1c3d (patch) | |
tree | 932ada8e16dfde3a0f7aebe73a52fe644baab1dd /protocols/msn/soap.c | |
parent | 07874bef9e9c4e6ace44e4d0605ce1aec89cad74 (diff) |
Show incoming auth. requests (although responding to them currently causes
a disconnect).
Diffstat (limited to 'protocols/msn/soap.c')
-rw-r--r-- | protocols/msn/soap.c | 8 |
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; } |