1. fix set/lockout so that it is possible to lock out all SSIDs except those
[spider.git] / cmd / who.pl
index ecb45d70f8eff3167934e57522cd62c078f4b05d..6ec7dba36a9b97a7f2776156f0b0fc30cf3f378d 100644 (file)
@@ -26,7 +26,7 @@ foreach $dxchan ( sort {$a->call cmp $b->call} DXChannel::get_all ) {
                $sort = "AK1A" if $dxchan->is_ak1a;
        }
        my $name = $dxchan->user->name || " ";
-       my $ping = $dxchan->is_node && $dxchan != $DXProt::me ? sprintf("%5.2f", $dxchan->pingave) : "     ";
+       my $ping = $dxchan->is_node && $dxchan != $main::me ? sprintf("%5.2f", $dxchan->pingave) : "     ";
        my $conn = $dxchan->conn;
        my $ip = '';
        $ip = $conn->{peerhost} if $conn && $conn->{peerhost};