diff options
author | Bernd Schubert <bschubert@ddn.com> | 2025-06-16 12:17:26 +0200 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-06-17 19:23:36 +0200 |
commit | 410890482c8b134525bb9f006089848399eea62a (patch) | |
tree | 8e7fd6d0c5e631076cf12e6a5aeba362cb34d511 | |
parent | 00dd846588e3d6a235e3f430f4063b43686adbc3 (diff) | |
download | libfuse-410890482c8b134525bb9f006089848399eea62a.tar.gz |
example/passthrough_hp: Show fuse lowlevel help options
Signed-off-by: Bernd Schubert <bschubert@ddn.com>
-rw-r--r-- | example/passthrough_hp.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/example/passthrough_hp.cc b/example/passthrough_hp.cc index dd3a45a..4f34e2b 100644 --- a/example/passthrough_hp.cc +++ b/example/passthrough_hp.cc @@ -1455,6 +1455,8 @@ static cxxopts::ParseResult parse_options(int argc, char **argv) std::cout << std::endl << "options:" << help.substr(help.find("\n\n") + 1, string::npos); + std::cout << "\nFuse lowlevel options:\n"; + fuse_lowlevel_help(); exit(0); } else if (argc != 3) { |