Changeset 04cd284 for protocols/msn


Ignore:
Timestamp:
2010-10-02T05:19:27Z (13 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
62f53b50
Parents:
ed86165
Message:

Export block/allow list again. The way this is done is ugly though and needs
to change.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/soap.c

    red86165 r04cd284  
    626626        bd = bu->data;
    627627        if( strcmp( role, "Allow" ) == 0 )
     628        {
    628629                bd->flags |= MSN_BUDDY_AL;
     630                ic->permit = g_slist_prepend( ic->permit, g_strdup( handle ) );
     631        }
    629632        else if( strcmp( role, "Block" ) == 0 )
     633        {
    630634                bd->flags |= MSN_BUDDY_BL;
     635                ic->deny = g_slist_prepend( ic->deny, g_strdup( handle ) );
     636        }
    631637        else if( strcmp( role, "Reverse" ) == 0 )
    632638                bd->flags |= MSN_BUDDY_RL;
Note: See TracChangeset for help on using the changeset viewer.