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.sbin/repquota | |
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.sbin/repquota')
-rw-r--r-- | usr.sbin/repquota/repquota.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/repquota/repquota.c b/usr.sbin/repquota/repquota.c index 6eaa914a754..a50f16df954 100644 --- a/usr.sbin/repquota/repquota.c +++ b/usr.sbin/repquota/repquota.c @@ -38,7 +38,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)repquota.c 8.1 (Berkeley) 6/6/93";*/ -static char *rcsid = "$Id: repquota.c,v 1.25 2003/06/26 19:47:10 deraadt Exp $"; +static char *rcsid = "$Id: repquota.c,v 1.26 2005/04/01 04:31:11 deraadt Exp $"; #endif /* not lint */ /* @@ -208,7 +208,7 @@ repquota(struct fstab *fs, int type, char *qfpathname) fup->fu_dqblk = dqbuf; } fclose(qf); - printf(" Block limits File limits\n"); + printf(" KByte limits File limits\n"); printf("User used soft hard grace used soft hard grace\n"); for (id = 0; id <= highid[type]; id++) { fup = lookup(id, type); |