# HG changeset patch # User Mark Doliner # Date 1111637386 0 # Node ID 56f1c92b943f4269e34643136ad3e59ae2d7d9bf # Parent 75427cc95dfdbef9a0acf8be16421e660eaf9209 [gaim-migrate @ 12315] sf patch #1169415, from Eitan Isaacson "This fixes the msn http method" I didn't test this at all. committer: Tailor Script diff -r 75427cc95dfd -r 56f1c92b943f src/protocols/msn/httpconn.c --- a/src/protocols/msn/httpconn.c Tue Mar 22 16:32:33 2005 +0000 +++ b/src/protocols/msn/httpconn.c Thu Mar 24 04:09:46 2005 +0000 @@ -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);