1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

Ignores without nick masks didn't work

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1168 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-01-28 16:54:25 +00:00 committed by cras
parent c4753213fe
commit f771409214

View File

@ -121,7 +121,7 @@ static int ignore_check_without_mask(GSList *list, CHANNEL_REC *channel,
GSList *tmp;
int len, best_mask, best_match, best_patt;
best_mask = best_patt = 0; best_match = FALSE;
best_mask = best_patt = -1; best_match = FALSE;
for (tmp = list; tmp != NULL; tmp = tmp->next) {
IGNORE_REC *rec = tmp->data;