diff options
author | pirzyk <pirzyk@FreeBSD.org> | 2001-05-23 17:12:09 +0000 |
---|---|---|
committer | pirzyk <pirzyk@FreeBSD.org> | 2001-05-23 17:12:09 +0000 |
commit | c043349b60e2398e3ab4026e2b34eb9e9596dfdd (patch) | |
tree | ff893fa8c779d59ab2364b922e029111c2b31319 /usr.bin/quota | |
parent | bbc05b90b86abad28c07e773f987b6cb7970a693 (diff) | |
download | FreeBSD-src-c043349b60e2398e3ab4026e2b34eb9e9596dfdd.zip FreeBSD-src-c043349b60e2398e3ab4026e2b34eb9e9596dfdd.tar.gz |
Changed 'blocks' to 'usage' because we may not be getting quotas from
a ufs filesystem and it may be reporting in K instead of 512b blocks.
This is true when using a vxfs filesystem (on a solaris box) for instance.
PR: bin/14545
Submitted by: Jim Pirzyk
Reviewed by: jkh
MFC after: 1 week
Diffstat (limited to 'usr.bin/quota')
-rw-r--r-- | usr.bin/quota/quota.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/quota/quota.c b/usr.bin/quota/quota.c index b17669b..372d591 100644 --- a/usr.bin/quota/quota.c +++ b/usr.bin/quota/quota.c @@ -403,7 +403,7 @@ heading(type, id, name, tag) if (!qflag && tag[0] == '\0') { printf("%15s%8s %7s%8s%8s%8s %7s%8s%8s\n" , "Filesystem" - , "blocks" + , "usage" , "quota" , "limit" , "grace" |