From 580ce2d1388c498b56ba4b5f4a9e6c42c9f3cda0 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Tue, 8 Jul 2008 02:56:53 +0000 Subject: mount: support for "-o mand" --- util-linux/mount.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'util-linux') diff --git a/util-linux/mount.c b/util-linux/mount.c index f73ad608b..2ceabced6 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -135,6 +135,8 @@ static const int32_t mount_options[] = { /* "noatime" */ MS_NOATIME, /* "diratime" */ ~MS_NODIRATIME, /* "nodiratime" */ MS_NODIRATIME, + /* "mand" */ MS_MANDLOCK, + /* "nomand" */ ~MS_MANDLOCK, /* "loud" */ ~MS_SILENT, // action flags @@ -185,6 +187,8 @@ static const char mount_option_str[] = "noatime" "\0" "diratime" "\0" "nodiratime" "\0" + "mand" "\0" + "nomand" "\0" "loud" "\0" // action flags -- cgit v1.2.3