diff options
author | Theodore Ts'o <tytso@mit.edu> | 1998-05-14 22:43:10 +0000 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 1998-05-14 22:43:10 +0000 |
commit | 4bf5fbfe055d5e9bce54a7bc2ad7b959041dcf12 (patch) | |
tree | b1134a4b873ab6d8dd643bd16ada6d931da8b8db /misc | |
parent | efac9a1b8d87d753b1c7989d9c05979c3c9c1a53 (diff) | |
download | e2fsprogs-4bf5fbfe055d5e9bce54a7bc2ad7b959041dcf12.tar.gz |
ChangeLog, fsck.c:
Remove check for filesystem with the noauto option.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/ChangeLog | 5 | ||||
-rw-r--r-- | misc/fsck.c | 6 |
2 files changed, 5 insertions, 6 deletions
diff --git a/misc/ChangeLog b/misc/ChangeLog index 66591a65..9500526b 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -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 diff --git a/misc/fsck.c b/misc/fsck.c index ec0c486f..29c87413 100644 --- a/misc/fsck.c +++ b/misc/fsck.c @@ -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); |