diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-06-30 03:11:54 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-06-30 03:11:54 +0000 |
commit | becd09d2fe5d05cb52dfd4854c9bbda94356b24c (patch) | |
tree | 2b5747a8aba7533865db064e6220848925dd736c /usr.bin/netstat | |
parent | 8b2777b215cac90bf766659d96610d2e80560770 (diff) |
Make "netstat -ia" line up nicely.
Diffstat (limited to 'usr.bin/netstat')
-rw-r--r-- | usr.bin/netstat/if.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/netstat/if.c b/usr.bin/netstat/if.c index df08a64794c..0dabb9608f0 100644 --- a/usr.bin/netstat/if.c +++ b/usr.bin/netstat/if.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if.c,v 1.13 1997/06/29 21:46:00 millert Exp $ */ +/* $OpenBSD: if.c,v 1.14 1997/06/30 03:11:53 millert Exp $ */ /* $NetBSD: if.c,v 1.16.4.2 1996/06/07 21:46:46 thorpej Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "from: @(#)if.c 8.2 (Berkeley) 2/21/94"; #else -static char *rcsid = "$OpenBSD: if.c,v 1.13 1997/06/29 21:46:00 millert Exp $"; +static char *rcsid = "$OpenBSD: if.c,v 1.14 1997/06/30 03:11:53 millert Exp $"; #endif #endif /* not lint */ @@ -187,7 +187,7 @@ intpr(interval, ifnetaddr) while (multiaddr != 0) { kread(multiaddr, (char *)&inm, sizeof inm); - printf("\n%23s %-15.15s ", "", + printf("\n%23s %-17.17s ", "", routename(inm.inm_addr.s_addr)); multiaddr = (u_long)inm.inm_list.le_next; } |