Changeset bf02a67 for protocols/oscar
- Timestamp:
- 2005-12-15T11:55:27Z (19 years ago)
- Branches:
- master
- Children:
- 15832cc, bd69a21
- Parents:
- 11e090b (diff), 547f937 (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
r11e090b rbf02a67 357 357 odata->icq = TRUE; 358 358 /* this is odd but it's necessary for a proper do_import and do_export */ 359 gc->protocol = PROTO_ICQ;360 359 gc->password[8] = 0; 361 360 } else { 362 gc->protocol = PROTO_TOC;363 361 gc->flags |= OPT_CONN_HTML; 364 362 } … … 2633 2631 } 2634 2632 2635 static struct prpl *my_protocol = NULL; 2636 2637 void oscar_init(struct prpl *ret) { 2638 ret-> protocol = PROTO_OSCAR;2633 void oscar_init() 2634 { 2635 struct prpl *ret = g_new0(struct prpl, 1); 2636 ret->name = "oscar"; 2639 2637 ret->away_states = oscar_away_states; 2640 2638 ret->login = oscar_login; … … 2658 2656 ret->cmp_buddynames = aim_sncmp; 2659 2657 ret->get_status_string = oscar_get_status_string; 2660 2661 2658 ret->send_typing = oscar_send_typing; 2662 2659 2663 my_protocol = ret;2664 } 2660 register_protocol(ret); 2661 }
Note: See TracChangeset
for help on using the changeset viewer.