Changeset 6caa56a


Ignore:
Timestamp:
2005-11-30T13:36:59Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
7c2d798b
Parents:
c3c2e14
Message:

Renamed no_one_calls in proxy.c to something that makes more sense to me.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/proxy.c

    rc3c2e14 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.