svn commit: r346774 - stable/12/usr.bin/nfsstat
Rick Macklem
rmacklem at FreeBSD.org
Sat Apr 27 02:05:05 UTC 2019
Author: rmacklem
Date: Sat Apr 27 02:05:04 2019
New Revision: 346774
URL: https://svnweb.freebsd.org/changeset/base/346774
Log:
MFC: r346192
Fix printing of the line that starts with "LocalOpen...".
When "nfsstat -E -c" was done, the title line starting with "LocalOpen..."
was not being displayed. This was introduced by r328588.
Modified:
stable/12/usr.bin/nfsstat/nfsstat.c
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/usr.bin/nfsstat/nfsstat.c
==============================================================================
--- stable/12/usr.bin/nfsstat/nfsstat.c Sat Apr 27 01:58:51 2019 (r346773)
+++ stable/12/usr.bin/nfsstat/nfsstat.c Sat Apr 27 02:05:04 2019 (r346774)
@@ -790,7 +790,7 @@ exp_intpr(int clientOnly, int serverOnly, int nfs41)
(uintmax_t)ext_nfsstats.cllocalopenowners);
xo_emit("{T:LocalOpen/%13.13s}{T:LocalLown/%13.13s}"
- "{T:LocalLock\n");
+ "{T:LocalLock/%13.13s}\n");
xo_emit("{:localopen/%13ju}{:locallown/%13ju}"
"{:locallock/%13ju}\n",
(uintmax_t)ext_nfsstats.cllocalopens,
More information about the svn-src-stable-12
mailing list