Make channel name compares case insensitive

Ticket #95
This commit is contained in:
Andreas Öman 2009-10-09 18:12:13 +00:00
parent 1264b7b228
commit 480eca20fc

View file

@ -822,7 +822,7 @@ channel_tag_find_by_name(const char *name, int create)
char str[50];
TAILQ_FOREACH(ct, &channel_tags, ct_link)
if(!strcmp(ct->ct_name, name))
if(!strcasecmp(ct->ct_name, name))
return ct;
if(!create)