diff options
Diffstat (limited to 'usr.sbin/repquota')
-rw-r--r-- | usr.sbin/repquota/repquota.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/repquota/repquota.c b/usr.sbin/repquota/repquota.c index 2904a60..ca897a7 100644 --- a/usr.sbin/repquota/repquota.c +++ b/usr.sbin/repquota/repquota.c @@ -214,8 +214,8 @@ repquota(fs, type, qfpathname) continue; printf("%-10s", fup->fu_name); printf("%c%c%8lu%8lu%8lu%7s", - fup->fu_dqblk.dqb_bsoftlimit && - fup->fu_dqblk.dqb_curblocks >= + fup->fu_dqblk.dqb_bsoftlimit && + fup->fu_dqblk.dqb_curblocks >= fup->fu_dqblk.dqb_bsoftlimit ? '+' : '-', fup->fu_dqblk.dqb_isoftlimit && fup->fu_dqblk.dqb_curinodes >= @@ -223,8 +223,8 @@ repquota(fs, type, qfpathname) (u_long)(dbtob(fup->fu_dqblk.dqb_curblocks) / 1024), (u_long)(dbtob(fup->fu_dqblk.dqb_bsoftlimit) / 1024), (u_long)(dbtob(fup->fu_dqblk.dqb_bhardlimit) / 1024), - fup->fu_dqblk.dqb_bsoftlimit && - fup->fu_dqblk.dqb_curblocks >= + fup->fu_dqblk.dqb_bsoftlimit && + fup->fu_dqblk.dqb_curblocks >= fup->fu_dqblk.dqb_bsoftlimit ? timeprt(fup->fu_dqblk.dqb_btime) : ""); printf(" %6lu%6lu%6lu%7s\n", |