Changeset 4aa0f6b for protocols/nogaim.c


Ignore:
Timestamp:
2010-06-07T14:31:07Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
56699f0
Parents:
0d9d53e (diff), 1fdb0a4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merging killerbee stuff, bringing all the bleeding-edge stuff together.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.c

    r0d9d53e r4aa0f6b  
    112112{
    113113        GList *gl;
    114         for (gl = protocols; gl; gl = gl->next)
     114       
     115        for( gl = protocols; gl; gl = gl->next )
    115116        {
    116117                struct prpl *proto = gl->data;
    117                 if(!g_strcasecmp(proto->name, name))
     118               
     119                if( g_strcasecmp( proto->name, name ) == 0 )
    118120                        return proto;
    119121        }
     122       
    120123        return NULL;
    121124}
     
    128131        extern void jabber_initmodule();
    129132        extern void twitter_initmodule();
     133        extern void purple_initmodule();
    130134
    131135#ifdef WITH_MSN
     
    147151#ifdef WITH_TWITTER
    148152        twitter_initmodule();
     153#endif
     154
     155#ifdef WITH_PURPLE
     156        purple_initmodule();
    149157#endif
    150158
Note: See TracChangeset for help on using the changeset viewer.