in reply to
Net::DNS::Resolver problem with subroutine.
my ($ip) = @_;
should be
my ($ip) = $_[0];
or
my $ip = shift;
disregard. <also feels stupid>
Roses are red, violets are blue. All my base, are belong to you.
Comment on
Re: Net::DNS::Resolver problem with subroutine.
Select
or
Download
Code
In Section
Seekers of Perl Wisdom