Save a little space on the interface list for console assignment.

This commit is contained in:
jim-p 2011-04-14 16:50:23 -04:00
parent d2903c0cab
commit ca90133bf6

View File

@ -84,8 +84,8 @@ EOD;
$iflist = array();
} else {
foreach ($iflist as $iface => $ifa) {
echo sprintf("% -6s%s%s\t%s\n", $iface, $ifa['mac'],
$ifa['up'] ? " (up)" : " (down)", $ifa['dmesg']);
echo sprintf("% -6s%s %s %s\n", $iface, $ifa['mac'],
$ifa['up'] ? " (up)" : "(down)", $ifa['dmesg']);
}
}