blob: 41770bc4cede177fa97bff155c3c1c7596f2feb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
mount: Ignore `loop' and `exec' options
* utils/mount.c (do_mount): Ignore `loop' and `exec' options.
---
mount.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/utils/mount.c b/utils/mount.c
index 8b059c2..8af055e 100644
--- a/utils/mount.c
+++ b/utils/mount.c
@@ -248,7 +248,9 @@ do_mount (struct fs *fs, int remount)
{
ARGZ (add (&fsopts, &fsopts_len, o));
}
- else if ((strcmp (o, "defaults") != 0) && (strlen (o) != 0))
+ else if (strcmp (o, "defaults") != 0 && (strlen (o) != 0) &&
+ strcmp (o, "loop") != 0 &&
+ strcmp (o, "exec") != 0)
{
/* Prepend `--' to the option to make a long option switch,
e.g. `--ro' or `--rsize=1024'. */
|