From 4dff614333a134d2d7ed638666f90c743aea0089 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sat, 15 Dec 2001 20:37:50 +0000 Subject: [PATCH] Irssi::ignores() wasn't working, it looked at the server list.. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2254 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/perl/common/Ignore.xs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/perl/common/Ignore.xs b/src/perl/common/Ignore.xs index 2a053b16..e4452c78 100644 --- a/src/perl/common/Ignore.xs +++ b/src/perl/common/Ignore.xs @@ -8,7 +8,7 @@ ignores() PREINIT: GSList *tmp; PPCODE: - for (tmp = servers; tmp != NULL; tmp = tmp->next) { + for (tmp = ignores; tmp != NULL; tmp = tmp->next) { XPUSHs(sv_2mortal(plain_bless(tmp->data, "Irssi::Ignore"))); }