gaim/gaim

sf patch #1169415, from Eitan Isaacson
oldstatus
2005-03-23, Mark Doliner
4800793dd976
Parents e31d78aff5d4
Children cc4298b48223
sf patch #1169415, from Eitan Isaacson
"This fixes the msn http method"

I didn't test this at all.
--- a/src/protocols/msn/httpconn.c Tue Mar 22 14:34:46 2005 -0500
+++ b/src/protocols/msn/httpconn.c Wed Mar 23 23:10:16 2005 -0500
@@ -641,8 +641,8 @@
if ((s = strstr(buf, "\r\n\r\n")) == NULL)
return FALSE;
+ s += 4; /* Skip \r\n */
header = g_strndup(buf, s - buf);
- s += 4; /* Skip \r\n */
body_start = s;
body_len = size - (body_start - buf);