Changeset f7d12f7


Ignore:
Timestamp:
2010-08-05T20:20:44Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
bf2ebd8
Parents:
65a4a64
Message:

Some fixes for compiler warnings that only show up when compiling with -O2,
and some additions to the Debian package description.

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • debian/control

    r65a4a64 rf7d12f7  
    1717Description: An IRC to other chat networks gateway (default version)
    1818 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! and
    20  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.
    2121
    2222Package: bitlbee-libpurple
     
    2727Description: An IRC to other chat networks gateway (using libpurple)
    2828 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! and
    30  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.
    3131 .
    3232 This package contains a version of BitlBee that uses the libpurple instant
     
    4444Description: An IRC to other chat networks gateway (common files/docs)
    4545 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! and
    47  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.
    4848 .
    4949 This package contains common files (mostly documentation) for bitlbee and
     
    5555Description: An IRC to other chat networks gateway (dev files)
    5656 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! and
    58  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.
    5959 .
    6060 This package holds development stuff for compiling plug-ins.
  • nick.c

    r65a4a64 rf7d12f7  
    116116        while( fmt && *fmt && ret->len < MAX_NICK_LENGTH )
    117117        {
    118                 char *part, chop = '\0', *asc = NULL;
     118                char *part = NULL, chop = '\0', *asc = NULL;
    119119                int len = MAX_NICK_LENGTH;
    120120               
  • protocols/oscar/oscar.c

    r65a4a64 rf7d12f7  
    19631963static int gaim_ssi_parselist(aim_session_t *sess, aim_frame_t *fr, ...) {
    19641964        struct im_connection *ic = sess->aux_data;
    1965         struct aim_ssi_item *curitem, *curgroup;
     1965        struct aim_ssi_item *curitem, *curgroup = NULL;
    19661966        int tmp;
    19671967        char *nrm;
     
    19801980                                                    realname = aim_gettlv_str(curitem->data, 0x0131, 1);
    19811981                                       
    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);
    19831983                                       
    19841984                                        if (realname) {
  • protocols/yahoo/yahoo.c

    r65a4a64 rf7d12f7  
    821821{
    822822        struct byahoo_conf_invitation *inv = data;
    823         struct groupchat *b;
     823        struct groupchat *b = NULL;
    824824        GSList *l;
    825825       
Note: See TracChangeset for help on using the changeset viewer.