X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXCommandmode.pm;h=4477ea75241f62b97a57167f30bf23dc470459c7;hb=3ba1b48202f7053b4d1097525dc0a660c3f9b31a;hp=5f6262289d7a8db50bc32046fe3fd12fc4a35feb;hpb=6a7585fe8df540f3dba6e0d09d115ce70d8b1aff;p=spider.git diff --git a/perl/DXCommandmode.pm b/perl/DXCommandmode.pm index 5f626228..4477ea75 100644 --- a/perl/DXCommandmode.pm +++ b/perl/DXCommandmode.pm @@ -82,7 +82,7 @@ sub start $self->{here} = 1; # get the filters - $self->{spotfilter} = Filter::read_in('spots', $call, 0) || Filter::read_in('spots', 'user_default', 0); + $self->{spotsfilter} = Filter::read_in('spots', $call, 0) || Filter::read_in('spots', 'user_default', 0); $self->{wwvfilter} = Filter::read_in('wwv', $call, 0) || Filter::read_in('wwv', 'user_default', 0); $self->{wcyfilter} = Filter::read_in('wcy', $call, 0) || Filter::read_in('wcy', 'user_default', 0); $self->{annfilter} = Filter::read_in('ann', $call, 0) || Filter::read_in('ann', 'user_default', 0) ; @@ -302,7 +302,7 @@ sub run_cmd # split the command line up into parts, the first part is the command my ($cmd, $args) = split /\s+/, $cmdline, 2; - $args = "" unless $args; + $args = "" unless defined $args; if ($cmd) { @@ -314,7 +314,7 @@ sub run_cmd my $acmd = CmdAlias::get_cmd($cmd); if ($acmd) { ($cmd, $args) = split /\s+/, "$acmd $args", 2; - $args = "" unless $args; + $args = "" unless defined $args; dbg('command', "aliased cmd: $cmd $args"); }