Mercurial > pidgin.yaz
changeset 2312:766603034af8
[gaim-migrate @ 2322]
heh.
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Wed, 19 Sep 2001 20:38:07 +0000 |
parents | 019832e79d9f |
children | bd9d403fb15b |
files | src/protocols/irc/irc.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/irc/irc.c Wed Sep 19 18:33:18 2001 +0000 +++ b/src/protocols/irc/irc.c Wed Sep 19 20:38:07 2001 +0000 @@ -629,11 +629,12 @@ if (*who == '+') buf[n++] = *who++; g_snprintf(buf + n, sizeof(buf) - n, "%s", new); - if (!g_strcasecmp(who, old)) { + if (!strcmp(who, old)) { char *tmp = g_strdup(r->data); rename_chat_buddy(b, tmp, buf); r = b->in_room; g_free(tmp); + break;; } else r = r->next; }