X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Flog.pl;h=fa8806c21f68554c30b7e6fb64ae85035cd35586;hb=d40ce3bdc0585fc7740907562eb129f0a4383b4a;hp=18d9405091f8e6132640a74d4be5860003c56b4a;hpb=6227d68be0d99f20afc56c023b81455d100924b7;p=spider.git diff --git a/cmd/show/log.pl b/cmd/show/log.pl index 18d94050..fa8806c2 100644 --- a/cmd/show/log.pl +++ b/cmd/show/log.pl @@ -24,10 +24,10 @@ sub handle next if $from && $to > $from; } unless ($to) { - ($to) = $f =~ /^(\d+)$/o if !$to; # is it a to count? + ($to) = $f =~ /^(\d+)$/ if !$to; # is it a to count? next if $to; } - unless ($who) { + unless ($f =~ /^\d+$/) { $who = $f; next if $who; } @@ -41,7 +41,6 @@ sub handle $who = $self->call; } - @out = $self->spawn_cmd(\&DXLog::print, args => [$from, $to, $main::systime, undef, $who]); - - return (1, @out); + return (1, DXLog::print($from, $to, $main::systime, undef, $who)) if ($self->{_nospawn} || $main::is_win == 1); + return (1, $self->spawn_cmd("show/log $cmdline", \&DXLog::print, args => [$from, $to, $main::systime, undef, $who])); }