bugfix: Set hidden flag on dtdlink host names so they do not show up in the "Remote Nodes" list.

This commit is contained in:
Conrad Lara - KG6JEI 2015-01-25 10:56:23 -08:00
parent c1de09455e
commit 243d5fc714
1 changed files with 1 additions and 0 deletions

View File

@ -97,6 +97,7 @@ foreach(`cat /var/run/hosts_olsr 2>/dev/null`)
if ( $name =~ /^dtdlink\..*$/ )
{
$hosts{$ip}{name} = $name;
$hosts{$ip}{hide} = 1;
next;
}