Whamcloud - gitweb
ChangeLog, fsck.c:
authorTheodore Ts'o <tytso@mit.edu>
Thu, 14 May 1998 22:43:10 +0000 (22:43 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 14 May 1998 22:43:10 +0000 (22:43 +0000)
  Remove check for filesystem with the noauto option.

misc/ChangeLog
misc/fsck.c

index 66591a6..9500526 100644 (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
index ec0c486..29c8741 100644 (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);