# HG changeset patch # User Richard Laager # Date 1183305040 0 # Node ID b9f003952c40f146b74334a287ef43d6ecfadb7c # Parent 49173b32df0d42a4d10208c4eed26f03086982f1 Once again revert the g_ascii_strncasecmp/g_ascii_strncasecmp changes here. diff -r 49173b32df0d -r b9f003952c40 libpurple/protocols/gg/lib/http.c --- 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'); diff -r 49173b32df0d -r b9f003952c40 libpurple/protocols/gg/lib/pubdir50.c --- a/libpurple/protocols/gg/lib/pubdir50.c Sun Jul 01 15:45:51 2007 +0000 +++ b/libpurple/protocols/gg/lib/pubdir50.c Sun Jul 01 15:50:40 2007 +0000 @@ -347,7 +347,7 @@ /* jeśli dostaliśmy namier na następne wyniki, to znaczy że * mamy koniec wyników i nie jest to kolejna osoba. */ - if (!g_ascii_strcasecmp(field, "nextstart")) { + if (!strcasecmp(field, "nextstart")) { res->next = atoi(value); num--; } else { @@ -390,7 +390,7 @@ } for (i = 0; i < res->entries_count; i++) { - if (res->entries[i].num == num && !g_ascii_strcasecmp(res->entries[i].field, field)) { + if (res->entries[i].num == num && !strcasecmp(res->entries[i].field, field)) { value = res->entries[i].value; break; }