Date: Thu, 5 Nov 2015 11:04:44 +0000 (UTC) From: Hajimu UMEMOTO <ume@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r290390 - head/usr.bin/netstat Message-ID: <201511051104.tA5B4iBv044239@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ume Date: Thu Nov 5 11:04:43 2015 New Revision: 290390 URL: https://svnweb.freebsd.org/changeset/base/290390 Log: Fix alignment of `Drop' header. Modified: head/usr.bin/netstat/if.c Modified: head/usr.bin/netstat/if.c ============================================================================== --- head/usr.bin/netstat/if.c Thu Nov 5 11:02:28 2015 (r290389) +++ head/usr.bin/netstat/if.c Thu Nov 5 11:04:43 2015 (r290390) @@ -308,7 +308,7 @@ intpr(void (*pfunc)(char *), int af) xo_emit(" {T:/%10.10s}","Obytes"); xo_emit(" {T:/%5s}", "Coll"); if (dflag) - xo_emit(" {T:/%s}", "Drop"); + xo_emit(" {T:/%5.5s}", "Drop"); xo_emit("\n"); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511051104.tA5B4iBv044239>