Changeset f16c64d


Ignore:
Timestamp:
2015-05-25T15:47:08Z (9 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Children:
2700925
Parents:
a852b2b
Message:

Block imcb_get_local_contacts() for modules that don't need it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.c

    ra852b2b rf16c64d  
    506506        GHashTableIter nicks;
    507507        GSList *ret = NULL;
     508       
     509        if (!(ic->acc->flags & ACC_FLAG_LOCAL_CONTACTS)) {
     510                /* Only allow protocols that indicate local contact list
     511                   support to use this function. */
     512                return ret;
     513        }
    508514       
    509515        g_hash_table_iter_init(&nicks, ic->acc->nicks);
Note: See TracChangeset for help on using the changeset viewer.