| 1649 | } |
| 1650 | |
| 1651 | void |
| 1652 | print_vhid(const struct ifaddrs *ifa, const char *s) |
| 1653 | { |
| 1654 | struct if_data *ifd; |
| 1655 | |
| 1656 | if (ifa->ifa_data == NULL) |
| 1657 | return; |
| 1658 | |
| 1659 | ifd = ifa->ifa_data; |
| 1660 | if (ifd->ifi_vhid == 0) |
| 1661 | return; |
| 1662 | |
| 1663 | printf(" vhid %d", ifd->ifi_vhid); |
| 1664 | } |
| 1665 | |
| 1666 | void |
| 1667 | ifmaybeload(const char *name) |
no test coverage detected