diff options
author | Tom Rhodes <trhodes@FreeBSD.org> | 2002-08-21 18:11:48 +0000 |
---|---|---|
committer | Tom Rhodes <trhodes@FreeBSD.org> | 2002-08-21 18:11:48 +0000 |
commit | ce66ddb76352a2e5f34aacdbe7733d92e60aff17 (patch) | |
tree | b5ee0aba66633a4e0e47097e4f383c253a87887a /sbin/quotacheck/quotacheck.c | |
parent | 7d971bbf29d32d2a93e71f178b5e6aa0c544df1c (diff) | |
download | src-ce66ddb76352a2e5f34aacdbe7733d92e60aff17.tar.gz src-ce66ddb76352a2e5f34aacdbe7733d92e60aff17.zip |
s/filesystem/file system/g as discussed on -developers
Notes
Notes:
svn path=/head/; revision=102231
Diffstat (limited to 'sbin/quotacheck/quotacheck.c')
-rw-r--r-- | sbin/quotacheck/quotacheck.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/quotacheck/quotacheck.c b/sbin/quotacheck/quotacheck.c index 8407676f7f5d..a8c051be2238 100644 --- a/sbin/quotacheck/quotacheck.c +++ b/sbin/quotacheck/quotacheck.c @@ -109,7 +109,7 @@ struct fileusage { #define FUHASH 1024 /* must be power of two */ struct fileusage *fuhead[MAXQUOTAS][FUHASH]; -int aflag; /* all filesystems */ +int aflag; /* all file systems */ int gflag; /* check group quotas */ int uflag; /* check user quotas */ int vflag; /* verbose */ @@ -254,7 +254,7 @@ needchk(fs) static int sblock_try[] = SBLOCKSEARCH; /* - * Scan the specified filesystem to check quota(s) present on it. + * Scan the specified file system to check quota(s) present on it. */ int chkquota(fsname, mntpt, qnp) @@ -292,7 +292,7 @@ chkquota(fsname, mntpt, qnp) break; } if (sblock_try[i] == -1) { - warn("Cannot find filesystem superblock"); + warn("Cannot find file system superblock"); return (1); } dev_bsize = sblock.fs_fsize / fsbtodb(&sblock, 1); |