]> Sergey Matveev's repositories - public-inbox.git/commitdiff
nntpd: avoid exiting subroutine via next
authorEric Wong <e@80x24.org>
Thu, 7 Jul 2016 19:55:29 +0000 (19:55 +0000)
committerEric Wong <e@80x24.org>
Thu, 7 Jul 2016 19:56:40 +0000 (19:56 +0000)
Fixes: 33cef7f24d3d ("config: introduce each_inbox for iteration")
lib/PublicInbox/NNTPD.pm

index a67811bc9bd458a6eb958c71513ac3d3f23fce7c..eb43a2bf264d84fba43d9896e724a7f203c420fd 100644 (file)
@@ -25,7 +25,7 @@ sub refresh_groups () {
        my @list;
        $pi_config->each_inbox(sub {
                my ($ng) = @_;
-               my $ngname = $ng->{newsgroup} or next;
+               my $ngname = $ng->{newsgroup} or return;
                if (ref $ngname) {
                        warn 'multiple newsgroups not supported: '.
                                join(', ', @$ngname). "\n";