diff options
author | Timo Sirainen <cras@irssi.org> | 2002-04-28 13:24:27 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-04-28 13:24:27 +0000 |
commit | 7d0af0013354c7cef56a76add55585812f07f5da (patch) | |
tree | 0dc525b94dc56c65faea3d192fd271a318264cdb /src/perl/irc | |
parent | c8188b61a8961c698cac6fabc095ca2d6c2cf30a (diff) | |
download | irssi-7d0af0013354c7cef56a76add55585812f07f5da.zip |
perl hash length fixes, they're also automatically checked now in
autogen.sh (by peder)
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2736 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/irc')
-rw-r--r-- | src/perl/irc/Irc.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/perl/irc/Irc.xs b/src/perl/irc/Irc.xs index b0588cec..e5a662a4 100644 --- a/src/perl/irc/Irc.xs +++ b/src/perl/irc/Irc.xs @@ -106,7 +106,7 @@ static void perl_netsplit_fill_hash(HV *hv, NETSPLIT_REC *netsplit) av_push(av, plain_bless(tmp->data, "Irssi::Irc::Netsplitchannel")); } - hv_store(hv, "channels", 7, newRV_noinc((SV*)av), 0); + hv_store(hv, "channels", 8, newRV_noinc((SV*)av), 0); } static void perl_netsplit_server_fill_hash(HV *hv, NETSPLIT_SERVER_REC *rec) |