From 8b0d73665caa4cd1c7d40966b6b6f32dd6d4ad9d Mon Sep 17 00:00:00 2001 From: minima Date: Fri, 15 Jun 2001 12:21:11 +0000 Subject: [PATCH] fix corrupted hops --- perl/Filter.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/perl/Filter.pm b/perl/Filter.pm index 82130b93..031ec926 100644 --- a/perl/Filter.pm +++ b/perl/Filter.pm @@ -216,7 +216,7 @@ sub it } # hops are done differently (simply) - my $hops = "H$self->{hops}" if exists $self->{hops}; + my $hops = $self->{hops} if exists $self->{hops}; if (isdbg('filter')) { my $args = join '\',\'', @_; @@ -224,8 +224,8 @@ sub it my $sort = $self->{sort}; my $dir = $self->{name} =~ /^in_/i ? "IN " : "OUT"; - $hops ||= "H?"; - dbg("$true $dir: $type/$sort with $asc on '$args' $hops") if isdbg('filter'); + my $h = $hops || ''; + dbg("$true $dir: $type/$sort with $asc on '$args' $h") if isdbg('filter'); } return ($r, $hops); } -- 2.34.1