From: Rob F. <rob...@us...> - 2002-01-30 02:41:02
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv28852/src Modified Files: proxy.c Log Message: Ho Hum Index: proxy.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/proxy.c,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 --- proxy.c 2001/12/21 23:27:48 1.39 +++ proxy.c 2002/01/30 02:40:59 1.40 @@ -321,7 +321,7 @@ debug_printf("connecting to %s:%d via %s:%d using HTTP\n", host, port, proxyhost, proxyport); - if (!(sin = gaim_gethostbyname(proxyhost, port))) { + if (!(sin = gaim_gethostbyname(proxyhost, proxyport))) { g_free(phb); return -1; } @@ -440,7 +440,7 @@ debug_printf("connecting to %s:%d via %s:%d using SOCKS4\n", host, port, proxyhost, proxyport); - if (!(sin = gaim_gethostbyname(proxyhost, port))) { + if (!(sin = gaim_gethostbyname(proxyhost, proxyport))) { g_free(phb); return -1; } @@ -663,7 +663,7 @@ debug_printf("connecting to %s:%d via %s:%d using SOCKS5\n", host, port, proxyhost, proxyport); - if (!(sin = gaim_gethostbyname(proxyhost, port))) { + if (!(sin = gaim_gethostbyname(proxyhost, proxyport))) { g_free(phb); return -1; } |