svn commit: r319892 - head/bin/df

Phil Shafer phil at FreeBSD.org
Tue Jun 13 05:38:41 UTC 2017


Author: phil
Date: Tue Jun 13 05:38:40 2017
New Revision: 319892
URL: https://svnweb.freebsd.org/changeset/base/319892

Log:
  Use {T:Capacity} for header so html output looks tidy
  
  Submitted by:	phil
  Approved by:	sjg

Modified:
  head/bin/df/df.c

Modified: head/bin/df/df.c
==============================================================================
--- head/bin/df/df.c	Tue Jun 13 01:25:19 2017	(r319891)
+++ head/bin/df/df.c	Tue Jun 13 05:38:40 2017	(r319892)
@@ -490,7 +490,7 @@ prtstat(struct statfs *sfsp, struct maxwidths *mwp)
 		xo_emit("{T:/%-*s}", mwp->mntfrom, "Filesystem");
 		if (Tflag)
 			xo_emit("  {T:/%-*s}", mwp->fstype, "Type");
-		xo_emit(" {T:/%*s} {T:/%*s} {T:/%*s} Capacity",
+		xo_emit(" {T:/%*s} {T:/%*s} {T:/%*s} {T:Capacity}",
 			mwp->total, header,
 			mwp->used, "Used", mwp->avail, "Avail");
 		if (iflag) {


More information about the svn-src-head mailing list