Changeset 704dd38 for protocols/oscar
- Timestamp:
- 2010-06-01T21:51:27Z (15 years ago)
- Branches:
- master
- Children:
- ad404ab
- Parents:
- 3429b58 (diff), ba3233c (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/oscar/oscar.c
r3429b58 r704dd38 1034 1034 m = g_list_append(m, exch); 1035 1035 1036 g_snprintf( txt, 1024, "Got an invitation to chatroom %s from %s: %s", name, userinfo->sn, args->msg);1036 g_snprintf(txt, 1024, "Got an invitation to chatroom %s from %s: %s", name, userinfo->sn, args->msg); 1037 1037 1038 1038 inv->ic = ic; … … 1040 1040 inv->name = g_strdup(name); 1041 1041 1042 imcb_ask( 1042 imcb_ask(ic, txt, inv, oscar_accept_chat, oscar_reject_chat); 1043 1043 1044 1044 if (name) 1045 1045 g_free(name); 1046 } else if (args->reqclass & AIM_CAPS_ICQRTF) { 1047 // TODO: constify 1048 char text[strlen(args->info.rtfmsg.rtfmsg)+1]; 1049 strncpy(text, args->info.rtfmsg.rtfmsg, sizeof(text)); 1050 imcb_buddy_msg(ic, normalize(userinfo->sn), text, 0, 0); 1046 1051 } 1047 1052
Note: See TracChangeset
for help on using the changeset viewer.