Ignore:
Timestamp:
2010-08-12T22:13:26Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
be7a180
Parents:
7f34ce2
Message:

Successful login (including contact list sync). \o/

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/msn_util.c

    r7f34ce2 rca7de3a  
    528528        return output;
    529529}
     530
     531gint msn_domaintree_cmp( gconstpointer a_, gconstpointer b_ )
     532{
     533        const char *a = a_, *b = b_;
     534        gint ret;
     535       
     536        if( !( a = strchr( a, '@' ) ) || !( b = strchr( b, '@' ) ) ||
     537            ( ret = strcmp( a, b ) ) == 0 )
     538                ret = strcmp( a_, b_ );
     539       
     540        return ret;
     541}
Note: See TracChangeset for help on using the changeset viewer.