- Timestamp:
- 2010-03-07T23:34:45Z (15 years ago)
- Branches:
- master
- Children:
- ea1d796
- Parents:
- 1e3120f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
skype/skype.c
r1e3120f r5d9db76 164 164 va_list args; 165 165 char str[IRC_LINE_SIZE]; 166 166 167 167 va_start(args, fmt); 168 168 vsnprintf(str, IRC_LINE_SIZE, fmt, args); … … 559 559 else { 560 560 g_snprintf(buf, IRC_LINE_SIZE, "%s %s", 561 set_getstr(&ic->acc->set, "edit_prefix"), body); 561 set_getstr(&ic->acc->set, "edit_prefix"), 562 body); 562 563 sd->is_edit = 0; 563 564 } 564 } 565 else 565 } else 566 566 g_snprintf(buf, IRC_LINE_SIZE, "/me %s", 567 567 body); … … 762 762 * just leave it out. */ 763 763 /*skype_printf(ic, "OPEN CHAT %s\n", id);*/ 764 g_snprintf(buf, IRC_LINE_SIZE, "%s@skype.com", sd->groupchat_with); 764 g_snprintf(buf, IRC_LINE_SIZE, "%s@skype.com", 765 sd->groupchat_with); 765 766 imcb_chat_add_buddy(gc, buf); 766 767 imcb_chat_add_buddy(gc, sd->username); … … 803 804 if (!strcmp(members[i], sd->username)) 804 805 continue; 805 g_snprintf(buf, IRC_LINE_SIZE, "%s@skype.com", members[i]); 806 g_snprintf(buf, IRC_LINE_SIZE, "%s@skype.com", 807 members[i]); 806 808 if (!g_list_find_custom(gc->in_room, buf, 807 809 (GCompareFunc)strcmp))
Note: See TracChangeset
for help on using the changeset viewer.