ChangeLog, fsck.c:

Remove check for filesystem with the noauto option.
This commit is contained in:
Theodore Ts'o 1998-05-14 22:43:10 +00:00
parent efac9a1b8d
commit 4bf5fbfe05
2 changed files with 5 additions and 6 deletions

View File

@ -1,3 +1,8 @@
1998-05-14 Theodore Ts'o <tytso@rsts-11.mit.edu>
* fsck.c (ignore): Remove check for filesystems with the noauto
option.
1998-03-30 Theodore Ts'o <tytso@rsts-11.mit.edu>
* Makefile.in: Change to use new installation directory variables

View File

@ -476,12 +476,6 @@ static int ignore(struct fs_info *fs)
*/
if (!fs_match(fs->type, fstype)) return 1;
/* Noauto never matches. */
for (cp = strtok(fs->opts, ","); cp != NULL; cp = strtok(NULL, ",")) {
if (!strcmp(cp, "noauto"))
return 1;
}
/* Are we ignoring this type? */
for(ip = ignored_types; *ip; ip++)
if (strcmp(fs->type, *ip) == 0) return(1);