mount: (new) add 'internal-only(i)' to non-root allowed options

Commit ce433404 introduced the change, which causes something like mount -i
<user-mount-path> to break which worked well before util-linux-2.21, now it
gives message 'mount: only root can use "--internal-only" option' when that
shouldn't be the case when it is already in fstab.

Signed-off-by: Raghavendra D Prabhu <rprabhu@wnohang.net>
This commit is contained in:
Raghavendra D Prabhu 2012-02-26 16:36:42 +05:30 committed by Karel Zak
parent b420e27969
commit 50d0ad9875
1 changed files with 1 additions and 1 deletions

View File

@ -712,7 +712,7 @@ int main(int argc, char **argv)
longopts, NULL)) != -1) {
/* only few options are allowed for non-root users */
if (mnt_context_is_restricted(cxt) && !strchr("hlLUVvpr", c))
if (mnt_context_is_restricted(cxt) && !strchr("hlLUVvpri", c))
exit_non_root(option_to_longopt(c, longopts));
switch(c) {