diff options
author | Sergei Shilovsky <sshilovsky@gmail.com> | 2022-06-23 15:48:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-23 15:48:32 +0300 |
commit | 02047f5f334548151e0dfc280cc1fccbbab02cd9 (patch) | |
tree | fc4c9e5624e200a773e3e625cf8d835bfe0130c1 | |
parent | 15a15850f3f95816fef8e1343a20a70c7e3b49da (diff) | |
download | bindfs-02047f5f334548151e0dfc280cc1fccbbab02cd9.tar.gz |
Like up list of options in --help
Co-authored-by: Martin Pärtel <martin.partel@gmail.com>
-rw-r--r-- | src/bindfs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bindfs.c b/src/bindfs.c index c7682b1..8b6a23a 100644 --- a/src/bindfs.c +++ b/src/bindfs.c @@ -1693,10 +1693,10 @@ static void print_usage(const char *progname) " -M --mirror-only=... Like --mirror but disallow access for\n" " all other users.\n" " --map=user1/user2:... Let user2 see files of user1 as his own.\n" - " --map-passwd=<passwdfile> Load uid mapping from <passwdfile>.\n" - " --map-group=<groupfile> Load gid mapping from <groupfile>.\n" - " --map-passwd-rev=<passwdfile> Load reversed uid mapping from <passwdfile>.\n" - " --map-group-rev=<groupfile> Load reversed gid mapping from <groupfile>.\n" + " --map-passwd=... Load uid mapping from passwd-like file.\n" + " --map-group=... Load gid mapping from group-like file.\n" + " --map-passwd-rev=... Load reversed uid mapping from passwd-like file.\n" + " --map-group-rev=... Load reversed gid mapping from group-like file.\n" " --uid-offset=... Set file uid = uid + offset.\n" " --gid-offset=... Set file gid = gid + offset.\n" "\n" |