In 1.35 (14.19) rwl trust is always empty:
is:
$trust = $1 if $rwl->{results}->{$_}=~/127.0.\d+.(\d)/ &&
$_=~/list.dnswl.org/;
should be:
switched around to capture the last match, and /i to do case-insensitive
match on list.dnswl.org:
$trust = $1 if $_ =~ /list.dnswl.org/i && $rwl->{results}->{$_} =~
/127.\d+.\d+.(\d)/;
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Assp-test mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/assp-test