summaryrefslogtreecommitdiffstats
path: root/sbin/mount/mount.c
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/mount/mount.c')
-rw-r--r--sbin/mount/mount.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c
index 64c3f57..e08202f 100644
--- a/sbin/mount/mount.c
+++ b/sbin/mount/mount.c
@@ -107,6 +107,7 @@ static struct opt {
{ MNT_NOCLUSTERW, "noclusterw" },
{ MNT_SUIDDIR, "suiddir" },
{ MNT_SOFTDEP, "soft-updates" },
+ { MNT_MULTILABEL, "multilabel" },
{ 0, NULL }
};
@@ -762,6 +763,7 @@ flags2opts(flags)
if (flags & MNT_NOCLUSTERW) res = catopt(res, "noclusterw");
if (flags & MNT_NOSYMFOLLOW) res = catopt(res, "nosymfollow");
if (flags & MNT_SUIDDIR) res = catopt(res, "suiddir");
+ if (flags & MNT_MULTILABEL) res = catopt(res, "multilabel");
return res;
}
OpenPOWER on IntegriCloud