Ignore:
Timestamp:
2013-05-01T18:55:50Z (11 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
af496d8
Parents:
dd95ce4 (diff), c2a863d (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:

Merge from vmiklos.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/skype/skype.c

    rdd95ce4 rf539d6e  
    344344        ptr++;
    345345        if (!strncmp(ptr, "ONLINESTATUS ", 13)) {
    346                         if (!strcmp(user, sd->username))
    347                                 return;
    348                         if (!set_getbool(&ic->acc->set, "test_join")
     346                if (!strlen(user) || !strcmp(user, sd->username))
     347                        return;
     348                if (!set_getbool(&ic->acc->set, "test_join")
    349349                                && !strcmp(user, "echo123"))
    350                                 return;
     350                        return;
    351351                ptr = g_strdup_printf("%s@skype.com", user);
    352352                imcb_add_buddy(ic, ptr, skype_group_by_username(ic, user));
     
    10161016                }
    10171017        } else if (!strncmp(info, "MEMBERS ", 8) || !strncmp(info, "ACTIVEMEMBERS ", 14) ) {
    1018                 info += 8;
     1018                if (!strncmp(info, "MEMBERS ", 8))
     1019                        info += 8;
     1020                else
     1021                        info += 14;
    10191022                gc = bee_chat_by_title(ic->bee, ic, id);
    10201023                /* Hack! We set ->data to TRUE
     
    15641567
    15651568        s = set_add(&acc->set, "mood_text", NULL, skype_set_mood_text, acc);
    1566         s->flags |= ACC_SET_NOSAVE | ACC_SET_ONLINE_ONLY;
     1569        s->flags |= SET_NOSAVE | ACC_SET_ONLINE_ONLY;
    15671570
    15681571        s = set_add(&acc->set, "call", NULL, skype_set_call, acc);
Note: See TracChangeset for help on using the changeset viewer.