fixed an issue where channels with uppercase names were not being recognized

This commit is contained in:
Laxmikant Rashinkar 2014-02-10 18:47:10 -08:00
parent c8e36aa91e
commit e95edef44e

View File

@ -2493,7 +2493,7 @@ find_name_in_lists(char *inName, struct list *names)
for (index = 0; index < names->count; index++)
{
name = (char *)list_get_item(names, index);
if ( (name != 0) && (g_strncmp(name, inName, MAX_CHANNEL_NAME) == 0) )
if ( (name != 0) && (g_strncasecmp(name, inName, MAX_CHANNEL_NAME) == 0) )
{
reply = index;
break; /* stop loop - item found*/