changeset 2331:1ea2792b6004

[gaim-migrate @ 2343] irc fix committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Thu, 20 Sep 2001 21:15:07 +0000
parents b618d7a4d9a6
children 1121342c6830
files src/protocols/irc/irc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/protocols/irc/irc.c	Thu Sep 20 21:01:49 2001 +0000
+++ b/src/protocols/irc/irc.c	Thu Sep 20 21:15:07 2001 +0000
@@ -78,7 +78,7 @@
 
 	while (bcs) {
 		struct conversation *b = bcs->data;
-		if (!strcmp(b->name, name))
+		if (!g_strcasecmp(b->name, name))
 			return b;
 		bcs = bcs->next;
 	}