diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2005-11-30 14:36:59 +0100 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2005-11-30 14:36:59 +0100 | 
| commit | 6caa56ab8e53f3b954da2ad1bbc779bfba1737ed (patch) | |
| tree | e1353823ee4f51d07edfa7e0971bf36ef563e565 /protocols | |
| parent | c3c2e1403287380e5e9d520900f761bbfa738b9f (diff) | |
Renamed no_one_calls in proxy.c to something that makes more sense to me.
Diffstat (limited to 'protocols')
| -rw-r--r-- | protocols/proxy.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/protocols/proxy.c b/protocols/proxy.c index 59b480f4..fb87e356 100644 --- a/protocols/proxy.c +++ b/protocols/proxy.c @@ -123,7 +123,7 @@ static gboolean gaim_io_invoke(GIOChannel *source, GIOCondition condition, gpoin  	return TRUE;  } -static void no_one_calls(gpointer data, gint source, GaimInputCondition cond) +static void gaim_io_connected(gpointer data, gint source, GaimInputCondition cond)  {  	struct PHB *phb = data;  	unsigned int len; @@ -172,7 +172,7 @@ static int proxy_connect_none(char *host, unsigned short port, struct PHB *phb)  	if (connect(fd, (struct sockaddr *)sin, sizeof(*sin)) < 0) {  		if (sockerr_again()) { -			phb->inpa = gaim_input_add(fd, GAIM_INPUT_WRITE, no_one_calls, phb); +			phb->inpa = gaim_input_add(fd, GAIM_INPUT_WRITE, gaim_io_connected, phb);  			phb->fd = fd;  		} else {  			closesocket(fd); | 
