diff options
Diffstat (limited to 'utils/mount.c')
-rw-r--r-- | utils/mount.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/mount.c b/utils/mount.c index 8b059c23..ea30f7af 100644 --- a/utils/mount.c +++ b/utils/mount.c @@ -54,6 +54,7 @@ static const struct argp_option argp_opts[] = {"update", 'u', 0, 0, "Flush any meta-data cached in core"}, {"remount", 0, 0, OPTION_ALIAS}, {"verbose", 'v', 0, 0, "Give more detailed information"}, + {"no-mtab", 'n', 0, 0, "Do not update /etc/mtab"}, {0, 0} }; @@ -110,6 +111,10 @@ parse_opt (int key, char *arg, struct argp_state *state) } break; + case 'n': + /* do nothing */ + break; + case ARGP_KEY_ARG: if (mountpoint == 0) /* One arg: mountpoint */ mountpoint = arg; |