diff options
| author | Tom Rhodes <trhodes@FreeBSD.org> | 2002-05-16 04:10:46 +0000 |
|---|---|---|
| committer | Tom Rhodes <trhodes@FreeBSD.org> | 2002-05-16 04:10:46 +0000 |
| commit | 3468b317cb93827fbbd4b835f5c233804bc5203c (patch) | |
| tree | 0adfec655f17ae1258112946fa8d7d72c9c75f76 /sbin/umount | |
| parent | 4481bee4621453e6555046bda0aa6ad9f672b773 (diff) | |
Notes
Diffstat (limited to 'sbin/umount')
| -rw-r--r-- | sbin/umount/umount.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/umount/umount.c b/sbin/umount/umount.c index 6148f3022315b..cd1a6c671e76a 100644 --- a/sbin/umount/umount.c +++ b/sbin/umount/umount.c @@ -224,14 +224,14 @@ umountall(char **typelist) strcmp(fs->fs_type, FSTAB_RO) && strcmp(fs->fs_type, FSTAB_RQ)) continue; - /* Ignore unknown file system types. */ + /* Ignore unknown filesystem types. */ if (getvfsbyname(fs->fs_vfstype, &vfc) == -1) continue; if (checkvfsname(fs->fs_vfstype, typelist)) continue; /* - * We want to unmount the file systems in the reverse order + * We want to unmount the filesystems in the reverse order * that they were mounted. So, we save off the file name * in some allocated memory, and then call recursively. */ @@ -507,7 +507,7 @@ getmntname(const char *fromname, const char *onname, err(1, "calloc"); } /* - * We want to get the file systems in the reverse order + * We want to get the filesystems in the reverse order * that they were mounted. Mounted and unmounted filesystems * are marked or unmarked in a table called 'mntcheck'. * Unmount(const char *dir, int flags) does only take the |
