Changeset 5a61e43f
- Timestamp:
- 2007-10-06T20:03:49Z (17 years ago)
- Branches:
- master
- Children:
- 3ef1910
- Parents:
- 66c9558
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
skype/skype.c
r66c9558 r5a61e43f 71 71 /* Same for file transfers. */ 72 72 skype_filetransfer_status filetransfer_status; 73 /* True if the next message will be a topic */74 int topic;75 73 }; 76 74 … … 309 307 { 310 308 /* New body, we have everything to use imcb_buddy_msg() now! */ 311 if(sd->topic) 312 { 313 imcb_log(ic, "%s has changed the chat topic to \"%s\"", sd->handle, info); 314 sd->topic = 0; 315 } 316 else 317 imcb_buddy_msg(ic, sd->handle, info, 0, 0); 309 imcb_buddy_msg(ic, sd->handle, info, 0, 0); 318 310 } 319 311 } … … 404 396 *info = '\0'; 405 397 info++; 406 if(!strncmp(info, "TOPIC ", 6)) 407 sd->topic = 1; 408 else if(!strcmp(info, "STATUS MULTI_SUBSCRIBED")) 398 if(!strcmp(info, "STATUS MULTI_SUBSCRIBED")) 409 399 { 410 400 struct groupchat *gc;
Note: See TracChangeset
for help on using the changeset viewer.