fix dx bug introduced by ip <ipaddr>
[spider.git] / cmd / dx.pl
index 306fb77bf7fe4d9cfd0dbe946020abecc128fcc5..792f4b7e5f131019580a2c18d413d8f03557b6fd 100644 (file)
--- a/cmd/dx.pl
+++ b/cmd/dx.pl
@@ -18,7 +18,7 @@ my $valid = 0;
 my $localonly;
 my $oline = $line;
 
-#$DB::single=1;
+$DB::single=1;
 
 return (1, $self->msg('e5')) if $self->remotecmd || $self->inscript;
 return (1, $self->msg('e28')) unless $self->isregistered;
@@ -56,7 +56,7 @@ if ($f[0] eq 'ip') {
        if (is_ipaddr($f[1])) {
                $ipaddr = $f[1];
        } else {
-               return (1, $self->msg('dx3', $f[1]));
+               return (1, $self->msg('dx4', $f[1]));
        }
        $line =~ s/^\s*$f[0]\s+$f[1]\s+//;
        @f = split /\s+/, $line, 3;
@@ -73,7 +73,9 @@ if (is_freq($f[1]) && $f[0] =~ m{^[\w\d]+(?:/[\w\d]+){0,2}$}) {
 } else {
        return (1, $self->msg('dx3'));
 }
-$line =~ s/^\s*$f[0]\s+$f[1]\s+//;
+$line =~ s/^\s*$f[0]//;
+$line =~ s/^\s*$f[1]//;
+$line =~ s/^\s*//;
 $line =~ s/\t+/ /g;                            # do this here because it needs to be stopped ASAP!
 $line ||= ' ';