From: Theodore Ts'o Date: Thu, 14 May 1998 22:43:10 +0000 (+0000) Subject: ChangeLog, fsck.c: X-Git-Tag: E2FSPROGS-1_12~18 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=4bf5fbfe055d5e9bce54a7bc2ad7b959041dcf12;p=tools%2Fe2fsprogs.git ChangeLog, fsck.c: Remove check for filesystem with the noauto option. --- diff --git a/misc/ChangeLog b/misc/ChangeLog index 66591a6..9500526 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 ec0c486..29c8741 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);