X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy.pm;h=53c8fe067cd87c858650a3100e5fb6cb5ccc15e6;hb=ef1ec4ae82e393dc4b9bdc1c5e70aa33cfc21c68;hp=5e28956ad8c64e05c5e5769d2da3b31c6afb8064;hpb=95688f2c6952387b7fa26c9dd41687e0d5ac8c29;p=irspy-moved-to-github.git diff --git a/lib/ZOOM/IRSpy.pm b/lib/ZOOM/IRSpy.pm index 5e28956..53c8fe0 100644 --- a/lib/ZOOM/IRSpy.pm +++ b/lib/ZOOM/IRSpy.pm @@ -1,4 +1,4 @@ -# $Id: IRSpy.pm,v 1.16 2006-09-20 16:12:56 mike Exp $ +# $Id: IRSpy.pm,v 1.18 2006-09-25 12:44:38 mike Exp $ package ZOOM::IRSpy; @@ -74,17 +74,17 @@ sub log { # sub targets { my $this = shift(); - my($targetList) = @_; + my(@targets) = @_; - $this->log("irspy", "setting explicit list of targets '$targetList'"); + $this->log("irspy", "setting explicit list of targets ", + join(", ", map { "'$_'" } @targets)); $this->{allrecords} = 0; - my @targets = grep { $_ ne "" } split /\s+/, $targetList; my @qlist; foreach my $target (@targets) { my($host, $port, $db, $newtarget) = _parse_target_string($target); if ($newtarget ne $target) { $this->log("irspy_debug", "rewriting '$target' to '$newtarget'"); - $target = $newtarget; # This written through the ref + $target = $newtarget; # This is written through the ref } push @qlist, (qq[(host = "$host" and port = "$port" and path="$db")]);