From 2f7e12f3f8afa5e9ca39e199b3c60dabdbb74202 Mon Sep 17 00:00:00 2001 From: simokawa Date: Wed, 22 Oct 2003 07:23:27 +0000 Subject: Add '0x' in front of EUI64 to avoid confusion. --- usr.sbin/fwcontrol/fwcontrol.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/fwcontrol/fwcontrol.c') diff --git a/usr.sbin/fwcontrol/fwcontrol.c b/usr.sbin/fwcontrol/fwcontrol.c index b1bf134..a7465f5 100644 --- a/usr.sbin/fwcontrol/fwcontrol.c +++ b/usr.sbin/fwcontrol/fwcontrol.c @@ -99,10 +99,10 @@ list_dev(int fd) data = get_dev(fd); printf("%d devices (info_len=%d)\n", data->n, data->info_len); - printf("node EUI64 status\n"); + printf("node EUI64 status\n"); for (i = 0; i < data->info_len; i++) { devinfo = &data->dev[i]; - printf("%4d %08x%08x %6d\n", + printf("%4d 0x%08x%08x %6d\n", (devinfo->status || i == 0) ? devinfo->dst : -1, devinfo->eui.hi, devinfo->eui.lo, -- cgit v1.1