always set flags field to here on new
authorminima <minima>
Sat, 9 Jun 2001 03:21:44 +0000 (03:21 +0000)
committerminima <minima>
Sat, 9 Jun 2001 03:21:44 +0000 (03:21 +0000)
cmd/show/configuration.pl
perl/Route.pm

index f563b6ae38b4f07df1022477b746488a70403074..bbfdd12c321788c1fee85f19a32caa4503f70ac1 100644 (file)
@@ -46,7 +46,7 @@ if ($list[0] && $list[0] =~ /^NOD/) {
        foreach $node (@nodes) {
                next if scalar @list && !grep $node->call =~ /^$_/, @list;
                my $call = $node->call;
-               $call = "($call)" if $node->here == 0;
+               $call = "($call)" unless $node->here;
                @l = ();
                push @l, $call;
                @val = sort $node->users;
index b5c02f0998bb437b7430cc65db71b787220594cd..e5d89828e50b548d44aa9498c99cab6db974a768 100644 (file)
@@ -58,6 +58,7 @@ sub new
                $self->{itu} = $dxcc[1]->itu;
                $self->{cq} = $dxcc[1]->cq;                                             
        }
+       $self->{flags} = here(1);
        
        return $self; 
 }