Do not repeat the name of the flag. Change alloc to allocate for better

spelling of printed messages.
This commit is contained in:
charnier 1999-11-27 17:05:08 +00:00
parent f5e6518176
commit 1d8a1bacef
2 changed files with 8 additions and 8 deletions

View File

@ -59,10 +59,8 @@ Despite that this doesn't give the correct results (it doesn't
account for the holes in files), this option isn't any faster
and thus is discouraged.
.It Fl k
Cause the numbers to be reported in kilobyte counts.
By default, all sizes are reported in 512-byte block counts.
The
.Fl k
options causes the numbers to be reported in kilobyte counts.
.It Fl n
Given a list of inodes (plus some optional data on each line)
in the standard input, for each file print out the owner (plus
@ -83,12 +81,14 @@ not accessed within 30, 60 and 90 days.
If the environment variable
.Ev BLOCKSIZE
is set, and the
.Gl k
.Fl k
option is not specified, the block counts will be displayed in units of that
size block.
.El
.Sh BUGS
ncheck does not exist in FreeBSD.. :-)
.Xr ncheck
does not exist in
.Bx Free Ns .. :-)
.Sh SEE ALSO
.Xr df 1 ,
.Xr quota 1 ,

View File

@ -330,7 +330,7 @@ dofsizes(fd,super,name)
maxino = super->fs_ncg * super->fs_ipg - 1;
#ifdef COMPAT
if (!(fsizes = (struct fsizes *)malloc(sizeof(struct fsizes))))
errx(1, "alloc fsize structure");
errx(1, "allocate fsize structure");
#endif /* COMPAT */
for (inode = 0; inode < maxino; inode++) {
errno = 0;
@ -361,7 +361,7 @@ dofsizes(fd,super,name)
if (!fp || ksz < fp->fsz_first) {
if (!(fp = (struct fsizes *)
malloc(sizeof(struct fsizes))))
errx(1, "alloc fsize structure");
errx(1, "allocate fsize structure");
fp->fsz_next = *fsp;
*fsp = fp;
fp->fsz_first = (ksz / FSZCNT) * FSZCNT;
@ -483,7 +483,7 @@ usage()
#ifdef COMPAT
fprintf(stderr,"usage: quot [-nfcvha] [filesystem ...]\n");
#else /* COMPAT */
fprintf(stderr,"usage: quot [-acfhknv] [ filesystem ... ]\n");
fprintf(stderr,"usage: quot [-acfhknv] [filesystem ...]\n");
#endif /* COMPAT */
exit(1);
}