summaryrefslogtreecommitdiff
path: root/misc/fsck.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/fsck.c')
-rw-r--r--misc/fsck.c6
1 files changed, 0 insertions, 6 deletions
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);