Entries with "noauto" options are ignored correctly when mounting all
authorRobert Griebl <griebl@gmx.de>
Tue, 14 May 2002 22:56:29 +0000 (22:56 -0000)
committerRobert Griebl <griebl@gmx.de>
Tue, 14 May 2002 22:56:29 +0000 (22:56 -0000)
("mount -a"), but mount fails when these entries are specified explicitly
In these cases the "noauto" option has to be simply ignored.

util-linux/mount.c

index 79335669d5ee5a6c04105ff010eb16484f627dcb..d58eecaebe7f8735d2279d8219599311fd1bbb40 100644 (file)
@@ -101,6 +101,7 @@ static const struct mount_options mount_options[] = {
        {"async", ~MS_SYNCHRONOUS, 0},
        {"atime", ~0, ~MS_NOATIME},
        {"defaults", ~0, 0},
+       {"noauto", ~0, 0},
        {"dev", ~MS_NODEV, 0},
        {"diratime", ~0, ~MS_NODIRATIME},
        {"exec", ~MS_NOEXEC, 0},