diff options
author | Sergei Shilovsky <sshilovsky@gmail.com> | 2022-06-23 15:48:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-23 15:48:03 +0300 |
commit | 15a15850f3f95816fef8e1343a20a70c7e3b49da (patch) | |
tree | 5e77bc888c857384e0ae1bb08ea919bef362c45d /src | |
parent | 97d7011b4ead35de7fa651c22a7c5e110fcc913e (diff) | |
download | bindfs-15a15850f3f95816fef8e1343a20a70c7e3b49da.tar.gz |
Fix -o analogue for --map-*-rev
Co-authored-by: Martin Pärtel <martin.partel@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/bindfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bindfs.c b/src/bindfs.c index fd71624..c7682b1 100644 --- a/src/bindfs.c +++ b/src/bindfs.c @@ -2370,8 +2370,8 @@ int main(int argc, char *argv[]) OPT_OFFSET2("--map=%s", "map=%s", map, -1), OPT_OFFSET2("--map-passwd=%s", "map-passwd=%s", map_passwd, -1), OPT_OFFSET2("--map-group=%s", "map-group=%s", map_group, -1), - OPT_OFFSET2("--map-passwd-rev=%s", "map-passwd=%s", map_passwd_rev, -1), - OPT_OFFSET2("--map-group-rev=%s", "map-group=%s", map_group_rev, -1), + OPT_OFFSET2("--map-passwd-rev=%s", "map-passwd-rev=%s", map_passwd_rev, -1), + OPT_OFFSET2("--map-group-rev=%s", "map-group-rev=%s", map_group_rev, -1), OPT_OFFSET3("-n", "--no-allow-other", "no-allow-other", no_allow_other, -1), OPT_OFFSET2("--read-rate=%s", "read-rate=%s", read_rate, -1), |