Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/proxy.c

    r21d09ac r6caa56a  
    124124}
    125125
    126 static void no_one_calls(gpointer data, gint source, GaimInputCondition cond)
     126static void gaim_io_connected(gpointer data, gint source, GaimInputCondition cond)
    127127{
    128128        struct PHB *phb = data;
     
    173173        if (connect(fd, (struct sockaddr *)sin, sizeof(*sin)) < 0) {
    174174                if (sockerr_again()) {
    175                         phb->inpa = gaim_input_add(fd, GAIM_INPUT_WRITE, no_one_calls, phb);
     175                        phb->inpa = gaim_input_add(fd, GAIM_INPUT_WRITE, gaim_io_connected, phb);
    176176                        phb->fd = fd;
    177177                } else {
Note: See TracChangeset for help on using the changeset viewer.