summary refs log tree commit diff stats
path: root/src/common/modes.c
diff options
context:
space:
mode:
authorTingPing <TingPing@users.noreply.github.com>2013-09-06 14:00:53 -0400
committerTingPing <TingPing@users.noreply.github.com>2013-09-06 14:00:53 -0400
commit88afa4afa2b3821f832007ad106e92d487d82ec9 (patch)
tree22015853311d9e623f17bd4a25fcc3300fcb63a6 /src/common/modes.c
parent3a87dedbb5d6bfa077ab97cf9b266abcfdc1bb7b (diff)
Fix detecting utf-8 on some networks
Diffstat (limited to 'src/common/modes.c')
-rw-r--r--src/common/modes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/modes.c b/src/common/modes.c
index 420f3e8c..416805c3 100644
--- a/src/common/modes.c
+++ b/src/common/modes.c
@@ -848,7 +848,7 @@ inbound_005 (server * serv, char *word[], const message_tags_data *tags_data)
 				serv->p_cmp = (void *)g_ascii_strcasecmp;
 		} else if (strncmp (word[w], "CHARSET=", 8) == 0)
 		{
-			if (g_ascii_strcasecmp (word[w] + 8, "UTF-8") == 0)
+			if (g_ascii_strncasecmp (word[w] + 8, "UTF-8", 5) == 0)
 			{
 				server_set_encoding (serv, "UTF-8");
 			}