summaryrefslogtreecommitdiff
path: root/debian/patches/mount-loop.patch
blob: 07f572beb3d3f3711975b3607a836a36f3e8b607 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
mount: Ignore `loop' option

* utils/mount.c (do_mount): Ignore `loop' option.
---
 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,8 @@ do_mount (struct fs *fs, int remount)
       {
 	ARGZ (add (&fsopts, &fsopts_len, o));
       }
-    else if (strcmp (o, "defaults") != 0)
+    else if (strcmp (o, "defaults") != 0 &&
+	     strcmp (o, "loop") != 0)
       {
 	/* Prepend `--' to the option to make a long option switch,
 	   e.g. `--ro' or `--rsize=1024'.  */