From 4bf5fbfe055d5e9bce54a7bc2ad7b959041dcf12 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Thu, 14 May 1998 22:43:10 +0000 Subject: ChangeLog, fsck.c: Remove check for filesystem with the noauto option. --- misc/ChangeLog | 5 +++++ misc/fsck.c | 6 ------ 2 files changed, 5 insertions(+), 6 deletions(-) (limited to 'misc') 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 + + * fsck.c (ignore): Remove check for filesystems with the noauto + option. + 1998-03-30 Theodore Ts'o * 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); -- cgit v1.2.3