summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>2000-01-03 17:48:36 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>2000-01-03 17:48:36 +0000
commite54ca68cb85fba6239fde4aad3f53dc623f9679c (patch)
tree13330b703a857f5268aff65b779c25f407be0d35
parent243821529cd845200d2f8ba8183b62bc39f0119a (diff)
Notes
-rw-r--r--usr.bin/netstat/if.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/netstat/if.c b/usr.bin/netstat/if.c
index 43661639aa2b..f72bf6a782a7 100644
--- a/usr.bin/netstat/if.c
+++ b/usr.bin/netstat/if.c
@@ -321,7 +321,7 @@ intpr(interval, ifnetaddr, pfunc)
hexprint:
while (--n >= 0)
m += printf("%02x%c", *cp++ & 0xff,
- n > 0 ? '.' : ' ');
+ n > 0 ? ':' : ' ');
m = 30 - m;
while (m-- > 0)
putchar(' ');