mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-12-29 19:59:26 +08:00
ChangeLog, fsck.c:
Remove check for filesystem with the noauto option.
This commit is contained in:
parent
efac9a1b8d
commit
4bf5fbfe05
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user