Mercurial > pidgin
changeset 17151:b601943a88b9
merge of '93a5063c46e94d1cc7ac11a05b7772048dc95753'
and 'f2b7963e729c44d3e474293db91675e8d487e909'
author | Etan Reisner <pidgin@unreliablesource.net> |
---|---|
date | Sun, 20 May 2007 06:33:35 +0000 |
parents | 7175af86ec01 (diff) 840b0730b3c2 (current diff) |
children | 215de86f8c4a |
files | |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/gg/lib/pubdir50.c Sun May 20 05:50:15 2007 +0000 +++ b/libpurple/protocols/gg/lib/pubdir50.c Sun May 20 06:33:35 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; }