Changeset f7d12f7
- Timestamp:
- 2010-08-05T20:20:44Z (14 years ago)
- Branches:
- master
- Children:
- bf2ebd8
- Parents:
- 65a4a64
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
debian/control
r65a4a64 rf7d12f7 17 17 Description: An IRC to other chat networks gateway (default version) 18 18 This program can be used as an IRC server which forwards everything you 19 say to people on other chat networks: Jabber , ICQ, AIM, MSN, Yahoo! and20 Twitter.19 say to people on other chat networks: Jabber (which includes Google Talk 20 and Facebook Chat), ICQ, AIM, MSN, Yahoo! and Twitter/Identica/Status.net. 21 21 22 22 Package: bitlbee-libpurple … … 27 27 Description: An IRC to other chat networks gateway (using libpurple) 28 28 This program can be used as an IRC server which forwards everything you 29 say to people on other chat networks: Jabber , ICQ, AIM, MSN, Yahoo! and30 Twitter.29 say to people on other chat networks: Jabber (which includes Google Talk 30 and Facebook Chat), ICQ, AIM, MSN, Yahoo! and Twitter/Identica/Status.net. 31 31 . 32 32 This package contains a version of BitlBee that uses the libpurple instant … … 44 44 Description: An IRC to other chat networks gateway (common files/docs) 45 45 This program can be used as an IRC server which forwards everything you 46 say to people on other chat networks: Jabber , ICQ, AIM, MSN, Yahoo! and47 Twitter.46 say to people on other chat networks: Jabber (which includes Google Talk 47 and Facebook Chat), ICQ, AIM, MSN, Yahoo! and Twitter/Identica/Status.net. 48 48 . 49 49 This package contains common files (mostly documentation) for bitlbee and … … 55 55 Description: An IRC to other chat networks gateway (dev files) 56 56 This program can be used as an IRC server which forwards everything you 57 say to people on other chat networks: Jabber , ICQ, AIM, MSN, Yahoo! and58 Twitter.57 say to people on other chat networks: Jabber (which includes Google Talk 58 and Facebook Chat), ICQ, AIM, MSN, Yahoo! and Twitter/Identica/Status.net. 59 59 . 60 60 This package holds development stuff for compiling plug-ins. -
nick.c
r65a4a64 rf7d12f7 116 116 while( fmt && *fmt && ret->len < MAX_NICK_LENGTH ) 117 117 { 118 char *part , chop = '\0', *asc = NULL;118 char *part = NULL, chop = '\0', *asc = NULL; 119 119 int len = MAX_NICK_LENGTH; 120 120 -
protocols/oscar/oscar.c
r65a4a64 rf7d12f7 1963 1963 static int gaim_ssi_parselist(aim_session_t *sess, aim_frame_t *fr, ...) { 1964 1964 struct im_connection *ic = sess->aux_data; 1965 struct aim_ssi_item *curitem, *curgroup ;1965 struct aim_ssi_item *curitem, *curgroup = NULL; 1966 1966 int tmp; 1967 1967 char *nrm; … … 1980 1980 realname = aim_gettlv_str(curitem->data, 0x0131, 1); 1981 1981 1982 imcb_add_buddy(ic, nrm, curgroup ->gid == curitem->gid ? curgroup->name: NULL);1982 imcb_add_buddy(ic, nrm, curgroup ? (curgroup->gid == curitem->gid ? curgroup->name : NULL) : NULL); 1983 1983 1984 1984 if (realname) { -
protocols/yahoo/yahoo.c
r65a4a64 rf7d12f7 821 821 { 822 822 struct byahoo_conf_invitation *inv = data; 823 struct groupchat *b ;823 struct groupchat *b = NULL; 824 824 GSList *l; 825 825
Note: See TracChangeset
for help on using the changeset viewer.