comparison src/gtkconv.c @ 8159:e1e871897a4b

[gaim-migrate @ 8871] someone who is less tired, and more knowledgeable about unicode needs to fix this function right, but this seems to work for now committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Wed, 21 Jan 2004 05:18:45 +0000
parents 77d1252b3803
children 9d1a984681fe
comparison
equal deleted inserted replaced
8158:e283be34aadf 8159:e1e871897a4b
2923 nicks != NULL; 2923 nicks != NULL;
2924 nicks = nicks->next) { 2924 nicks = nicks->next) {
2925 2925
2926 char *nick = nicks->data; 2926 char *nick = nicks->data;
2927 2927
2928 g_utf8_strncpy(nick_partial, nick, strlen(entered)); 2928 strncpy(nick_partial, nick, strlen(entered));
2929 if(gaim_utf8_strcasecmp(nick_partial, entered)) 2929 if(gaim_utf8_strcasecmp(nick_partial, entered))
2930 continue; 2930 continue;
2931 2931
2932 /* if we're here, it's a possible completion */ 2932 /* if we're here, it's a possible completion */
2933 2933