diff options
| author | Mike Pritchard <mpp@FreeBSD.org> | 2007-09-19 01:10:31 +0000 |
|---|---|---|
| committer | Mike Pritchard <mpp@FreeBSD.org> | 2007-09-19 01:10:31 +0000 |
| commit | ea1102302057a8ac9bdadabbc29ff476fa17b47f (patch) | |
| tree | 30ac19cb2e4605d7081213af9fe81894ff9ba879 /usr.sbin/repquota | |
| parent | 65875b1f5895086038f86359ef7f45a4ed4b8c24 (diff) | |
Notes
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 83993777e3fd..4f88bff5f5ae 100644 --- a/usr.sbin/repquota/repquota.c +++ b/usr.sbin/repquota/repquota.c @@ -231,8 +231,8 @@ repquota(fs, type, qfpathname) fclose(qf); printf("%*s Block limits File limits\n", max(UT_NAMESIZE,10), " "); - printf("User%*s used soft hard grace used soft hard grace\n", - max(UT_NAMESIZE,10), " "); + printf("%s%*s used soft hard grace used soft hard grace\n", + type == USRQUOTA ? "User " : "Group", max(UT_NAMESIZE,10), " "); for (id = 0; id <= highid[type]; id++) { fup = lookup(id, type); if (fup == 0) |
