diff options
author | Shawn Landden <slandden@gmail.com> | 2018-01-08 13:31:58 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-01-08 13:31:58 +0100 |
commit | 426134128112738c97a665170b21153ef0764b7d (patch) | |
tree | d5694aa1108b17b050756dd22aacb1e6896f30ab /util-linux | |
parent | 2f55404bbc7f56deca193995b7c373d129297a94 (diff) | |
download | busybox-426134128112738c97a665170b21153ef0764b7d.tar.gz |
umount: ignore -c
"-c, --no-canonicalize: Do not canonicalize paths."
As busybox doesn't canonicalize paths in the first place it is safe to ignore
this option.
See https://github.com/systemd/systemd/issues/7786
Signed-off-by: Shawn Landden <slandden@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/umount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/umount.c b/util-linux/umount.c index a6405dfcc..b45cd8a6b 100644 --- a/util-linux/umount.c +++ b/util-linux/umount.c @@ -81,8 +81,8 @@ static struct mntent *getmntent_r(FILE* stream, struct mntent* result, } #endif -/* ignored: -v -t -i */ -#define OPTION_STRING "fldnra" "vt:i" +/* ignored: -c -v -t -i */ +#define OPTION_STRING "fldnra" "cvt:i" #define OPT_FORCE (1 << 0) // Same as MNT_FORCE #define OPT_LAZY (1 << 1) // Same as MNT_DETACH #define OPT_FREELOOP (1 << 2) |