Mercurial > pidgin
diff libpurple/protocols/gg/lib/http.c @ 18409:b9f003952c40
Once again revert the g_ascii_strncasecmp/g_ascii_strncasecmp changes here.
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sun, 01 Jul 2007 15:50:40 +0000 |
parents | 16bdcffb1c62 |
children | 44b4e8bd759b |
line wrap: on
line diff
--- a/libpurple/protocols/gg/lib/http.c Sun Jul 01 15:45:51 2007 +0000 +++ b/libpurple/protocols/gg/lib/http.c Sun Jul 01 15:50:40 2007 +0000 @@ -349,7 +349,7 @@ gg_debug(GG_DEBUG_MISC, "=> -----BEGIN-HTTP-HEADER-----\n%s\n=> -----END-HTTP-HEADER-----\n", h->header); while (line) { - if (!g_ascii_strncasecmp(line, "Content-length: ", 16)) { + if (!strncasecmp(line, "Content-length: ", 16)) { h->body_size = atoi(line + 16); } line = strchr(line, '\n');