Mercurial > pidgin
changeset 3098:778e4e27c33e
[gaim-migrate @ 3112]
HTTP Proxy now HTTP compliant.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Thu, 28 Mar 2002 18:03:14 +0000 |
parents | 58588d33a3ca |
children | a5f759e43fdd |
files | ChangeLog src/proxy.c |
diffstat | 2 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Thu Mar 28 17:44:48 2002 +0000 +++ b/ChangeLog Thu Mar 28 18:03:14 2002 +0000 @@ -14,8 +14,9 @@ * Updated Polish Translation (Thanks Przemyslaw Sulek) * Fixed bug in MSN smilies that crashed PPC (and other?) platforms * Updated Spanish Translation (Thanks Amaya) - * Updated french translation + * Updated French translation * Updated Finnish translation (Thanks Tero Kuusela) + * HTTP Proxy settings now HTTP compliant (Thanks Robert McQueen) version 0.54 (03/14/2002): * Compiles without GdkPixbuf again
--- a/src/proxy.c Thu Mar 28 17:44:48 2002 +0000 +++ b/src/proxy.c Thu Mar 28 18:03:14 2002 +0000 @@ -276,7 +276,7 @@ } fcntl(source, F_SETFL, 0); - g_snprintf(cmd, sizeof(cmd), "CONNECT %s:%d HTTP/1.1\r\nHost = %s:%d\r\n", phb->host, phb->port, + g_snprintf(cmd, sizeof(cmd), "CONNECT %s:%d HTTP/1.1\r\nHost: %s:%d\r\n", phb->host, phb->port, phb->host, phb->port); if (send(source, cmd, strlen(cmd), 0) < 0) { close(source);