Changeset f539d6e for protocols/skype/skype.c
- Timestamp:
- 2013-05-01T18:55:50Z (12 years ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/skype/skype.c
rdd95ce4 rf539d6e 344 344 ptr++; 345 345 if (!strncmp(ptr, "ONLINESTATUS ", 13)) { 346 if (!strcmp(user, sd->username))347 348 346 if (!strlen(user) || !strcmp(user, sd->username)) 347 return; 348 if (!set_getbool(&ic->acc->set, "test_join") 349 349 && !strcmp(user, "echo123")) 350 350 return; 351 351 ptr = g_strdup_printf("%s@skype.com", user); 352 352 imcb_add_buddy(ic, ptr, skype_group_by_username(ic, user)); … … 1016 1016 } 1017 1017 } 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; 1019 1022 gc = bee_chat_by_title(ic->bee, ic, id); 1020 1023 /* Hack! We set ->data to TRUE … … 1564 1567 1565 1568 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; 1567 1570 1568 1571 s = set_add(&acc->set, "call", NULL, skype_set_call, acc);
Note: See TracChangeset
for help on using the changeset viewer.