diff src/protocols/irc/irc.c @ 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 14c8df9cc75f
children 9bda60d2d2e6
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;
 	}