X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FPrefix.pm;h=32b1e72ec0ec65c57ae4ba4218c3b163b394a8b1;hb=a10bb3f88ba73704734a47f6093e86277a581ea0;hp=15b6752dbcbc2bfef0810e4d408a730273253be1;hpb=6b6eda0362049fd67809f2789e523708a1a8cb13;p=spider.git diff --git a/perl/Prefix.pm b/perl/Prefix.pm index 15b6752d..32b1e72e 100644 --- a/perl/Prefix.pm +++ b/perl/Prefix.pm @@ -173,21 +173,28 @@ sub extract } # which is the shortest part (first if equal)? + dbg("Parts: $call = " . join('|', @parts)) if isdbg('prefix'); $sp = $parts[0]; foreach $p (@parts) { - $sp = $p if length $sp > length $p; + $sp = $p if length $p < length $sp; } + $sp =~ s/-\d+$//; # remove any SSID + # # now start to resolve it from the left hand end # for ($i = 1; $i <= length $sp; ++$i) { # now start to resolve it from the right hand end for ($i = length $sp; $i >= 1; --$i) { my @wout = get(substr($sp, 0, $i)); - last if @wout > 0 && $wout[0] gt $sp; + next if @wout > 0 && $wout[0] gt $sp; # last if @wout == 0; push @out, @wout; last if @wout; } } + if (isdbg('prefix')) { + my $dd = new Data::Dumper([ \@out ], [qw(@out)]); + dbg($dd->Dumpxs); + } return @out; }