diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-04-01 04:31:12 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-04-01 04:31:12 +0000 |
commit | 6afc2b8cc3a9965d9562b77d0064c2d279278022 (patch) | |
tree | dc55bf88834c3750b7fc7a094b53aff71a8249de /usr.bin/quota | |
parent | 993c30216a698d38dc60ba5c3992a160f667aafb (diff) |
these commands said "blocks" when they meant "KBytes" (they even calculated
it so). pointed out by janc@cyberspace.org, pr 3956
Diffstat (limited to 'usr.bin/quota')
-rw-r--r-- | usr.bin/quota/quota.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/quota/quota.c b/usr.bin/quota/quota.c index e6f23b8200b..52aa1ce476a 100644 --- a/usr.bin/quota/quota.c +++ b/usr.bin/quota/quota.c @@ -1,4 +1,4 @@ -/* $OpenBSD: quota.c,v 1.24 2004/10/10 03:31:20 mickey Exp $ */ +/* $OpenBSD: quota.c,v 1.25 2005/04/01 04:31:09 deraadt Exp $ */ /* * Copyright (c) 1980, 1990, 1993 @@ -41,7 +41,7 @@ static const char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)quota.c 8.1 (Berkeley) 6/6/93";*/ static const char rcsid[] = -"$OpenBSD: quota.c,v 1.24 2004/10/10 03:31:20 mickey Exp $"; +"$OpenBSD: quota.c,v 1.25 2005/04/01 04:31:09 deraadt Exp $"; #endif /* not lint */ /* @@ -395,7 +395,7 @@ heading(int type, u_long id, const char *name, const char *tag) if (!qflag && tag[0] == '\0') { printf("%15s%8s %7s%8s%8s%8s %7s%8s%8s\n", "Filesystem", - "blocks", + "KBytes", "quota", "limit", "grace", |