summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authormckusick <mckusick@FreeBSD.org>2009-10-20 17:50:27 +0000
committermckusick <mckusick@FreeBSD.org>2009-10-20 17:50:27 +0000
commitc089e60ab18b4756c2055e9576eb835d1c2e5a25 (patch)
tree27892d8f87d6961f1dd57e64d00bdfb15e043d2a /usr.sbin
parente1b72307f4a58cc3bef090314a35383a66bfb1ae (diff)
downloadFreeBSD-src-c089e60ab18b4756c2055e9576eb835d1c2e5a25.zip
FreeBSD-src-c089e60ab18b4756c2055e9576eb835d1c2e5a25.tar.gz
Claen up format when doing non-humanized output.
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/repquota/repquota.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/repquota/repquota.c b/usr.sbin/repquota/repquota.c
index 276a78d..aa822df 100644
--- a/usr.sbin/repquota/repquota.c
+++ b/usr.sbin/repquota/repquota.c
@@ -208,6 +208,7 @@ repquota(struct fstab *fs, int type)
printf("\n");
fprintf(stdout, "*** No %s quotas on %s (%s)\n",
qfextension[type], fs->fs_file, fs->fs_spec);
+ return(1);
}
return(0);
}
@@ -221,7 +222,7 @@ repquota(struct fstab *fs, int type)
printf("User%*s used soft hard grace used soft hard grace\n",
max(UT_NAMESIZE,10), " ");
maxid = quota_maxid(qf);
- for (id = 0; id <= maxid; id++) {
+ for (id = 0; id < maxid; id++) {
if (quota_read(qf, &dqbuf, id) != 0)
break;
if (dqbuf.dqb_curinodes == 0 && dqbuf.dqb_curblocks == 0)
@@ -253,6 +254,7 @@ repquota(struct fstab *fs, int type)
dqbuf.dqb_isoftlimit ?
timeprt(dqbuf.dqb_itime) : "-");
}
+ quota_close(qf);
return (0);
}
@@ -263,7 +265,7 @@ prthumanval(int64_t blocks)
int flags;
if (!hflag) {
- printf("%7llu", dbtokb(blocks));
+ printf(" %6llu", dbtokb(blocks));
return;
}
flags = HN_NOSPACE | HN_DECIMAL;
OpenPOWER on IntegriCloud