# HG changeset patch # User Mark Doliner # Date 1057346208 0 # Node ID 968a00c9f230a543983b1f0ba9c034cab9983332 # Parent 1e4a574bb46d3ccff226e5947cac1526d16da24b [gaim-migrate @ 6467] SOCKS4 and SOCKS5 proxy fixes from Grant Edwards (grante). Thanks Grant. Also, I'd be much obliged if someone could verify that SOCKS5 now works. committer: Tailor Script diff -r 1e4a574bb46d -r 968a00c9f230 src/proxy.c --- a/src/proxy.c Fri Jul 04 19:12:06 2003 +0000 +++ b/src/proxy.c Fri Jul 04 19:16:48 2003 +0000 @@ -1030,7 +1030,7 @@ if (phb->account == NULL || gaim_account_get_connection(phb->account) != NULL) { - phb->func(phb->data, -1, GAIM_INPUT_READ); + phb->func(phb->data, source, GAIM_INPUT_READ); } g_free(phb->host); @@ -1186,7 +1186,7 @@ if (phb->account == NULL || gaim_account_get_connection(phb->account) != NULL) { - phb->func(phb->data, -1, GAIM_INPUT_READ); + phb->func(phb->data, source, GAIM_INPUT_READ); } g_free(phb->host); @@ -1306,7 +1306,7 @@ if (phb->account == NULL || gaim_account_get_connection(phb->account) != NULL) { - phb->func(phb->data, -1, GAIM_INPUT_READ); + phb->func(phb->data, source, GAIM_INPUT_READ); } g_free(phb->host);