# HG changeset patch # User Sean Egan # Date 1017338594 0 # Node ID 778e4e27c33ed53464853c43803f0a972ec66d4f # Parent 58588d33a3ca9a49c0ed3290e03dd549b251aefb [gaim-migrate @ 3112] HTTP Proxy now HTTP compliant. committer: Tailor Script diff -r 58588d33a3ca -r 778e4e27c33e ChangeLog --- 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 diff -r 58588d33a3ca -r 778e4e27c33e src/proxy.c --- 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);