changeset 1860:91a74da87252

[gaim-migrate @ 1870] case insensitive committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sat, 19 May 2001 04:16:01 +0000
parents b1d62fe22d74
children 7ec37e31e5eb
files src/buddy_chat.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/buddy_chat.c	Sat May 19 01:48:48 2001 +0000
+++ b/src/buddy_chat.c	Sat May 19 04:16:01 2001 +0000
@@ -361,7 +361,7 @@
 	/* k, so now we've gotten past all the HTML crap. */
 	if (!*c)
 		return FALSE;
-	if (!strncmp(c, "/me ", 4)) {
+	if (!strncasecmp(c, "/me ", 4)) {
 		sprintf(c, "%s", c + 4);
 		return TRUE;
 	} else