Skip to content

Commit

Permalink
Fixed incorrect return value in Ipblock method
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Vicente committed May 23, 2012
1 parent 373e31b commit bfcc7a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Netdot/Model/Ipblock.pm
Expand Up @@ -1680,7 +1680,7 @@ sub get_descendants_trie {
my $list = ();
my $code = sub {
my $node = shift @_;
push @$list, $node;
push @$list, $node->data;
};

$class->_tree_traverse(root=>$n, code=>$code, tree=>$tree);
Expand Down

0 comments on commit bfcc7a1

Please sign in to comment.