Changes in / [3d9a92b:4c3a4c8]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • skype/skype.c

    r3d9a92b r4c3a4c8  
    4848        struct im_connection *ic;
    4949        char *username;
    50         /* The effective file descriptor. We store it here so any function can
    51          * write() to it. */
    5250        int fd;
    53         /* File descriptor returned by bitlbee. we store it so we know when
    54          * we're connected and when we aren't. */
    55         int bfd;
     51        int r_inpa;
    5652        /* When we receive a new message id, we query the handle, then the
    5753         * body. Store the handle here so that we imcb_buddy_msg() when we got
     
    350346                return FALSE;
    351347
    352         if( sd->bfd <= 0 )
    353                 sd->bfd = b_input_add( sd->fd, GAIM_INPUT_READ, skype_read_callback, ic );
     348        if( sd->r_inpa <= 0 )
     349                sd->r_inpa = b_input_add( sd->fd, GAIM_INPUT_READ, skype_read_callback, ic );
    354350
    355351        /* This will download all buddies. */
Note: See TracChangeset for help on using the changeset viewer.