Change the header to indicate which type of id is being displayed,
"User" or "Group", instead of identifying them all as "User". Approved by: re (bmah)
This commit is contained in:
parent
65875b1f58
commit
ea11023020
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user