summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-12-15 20:37:50 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-12-15 20:37:50 +0000
commit4dff614333a134d2d7ed638666f90c743aea0089 (patch)
tree1e52cd7f2ea4092438cedcfb19b9d14eabc6cfce /src
parent1410b3bc4c3e3762f476350bfcd3c667791a95a7 (diff)
downloadirssi-4dff614333a134d2d7ed638666f90c743aea0089.zip
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
Diffstat (limited to 'src')
-rw-r--r--src/perl/common/Ignore.xs2
1 files changed, 1 insertions, 1 deletions
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")));
}