Merge pull request #51 from Osirium/bug/channel-enables

Bug/channel enables
This commit is contained in:
Marc-André Moreau 2013-01-16 07:06:21 -08:00
commit 01330445ce

View File

@ -2010,7 +2010,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))
if ( (name != 0) && (g_strncmp(name, inName, MAX_CHANNEL_NAME) == 0) )
{
reply = index;
break; /* stop loop - item found*/