comparison src/gtkconv.c @ 8172:e68b1486c7ad

[gaim-migrate @ 8885] (13:46:53) datallah: LSchiere: i have a patch for tab complete (13:47:01) LSchiere: awesome (13:49:31) LSchiere: commit message? (13:50:09) ChipX86: "The sheep are coming home for the winter." (13:50:20) datallah: that works hehe (13:50:34) Etan: oh no, that means I'll need to make room committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Tue, 27 Jan 2004 18:50:23 +0000
parents 9d1a984681fe
children 62936f62d98e
comparison
equal deleted inserted replaced
8171:d0ba2f7b40e7 8172:e68b1486c7ad
2925 nicks = nicks->next) { 2925 nicks = nicks->next) {
2926 2926
2927 char *nick = nicks->data; 2927 char *nick = nicks->data;
2928 2928
2929 strncpy(nick_partial, nick, strlen(entered)); 2929 strncpy(nick_partial, nick, strlen(entered));
2930 nick_partial[strlen(entered)] = '\0';
2930 if(gaim_utf8_strcasecmp(nick_partial, entered)) 2931 if(gaim_utf8_strcasecmp(nick_partial, entered))
2931 continue; 2932 continue;
2932 2933
2933 /* if we're here, it's a possible completion */ 2934 /* if we're here, it's a possible completion */
2934 2935