summary refs log tree commit diff
path: root/ripple/fossil/src/bin/mount.rs
diff options
context:
space:
mode:
authoredef <edef@unfathomable.blue>2022-05-03 00:08:20 +0000
committeredef <edef@unfathomable.blue>2022-05-03 00:08:20 +0000
commit5c544de74b64fc08029d09d12ecde894b5e78078 (patch)
treed06f977111d7db68b28f0af2b6294cf4a858e1b1 /ripple/fossil/src/bin/mount.rs
parentbab70406b61e731dd79b8a12ce35772d0f46226b (diff)
downloadunf-legacy-5c544de74b64fc08029d09d12ecde894b5e78078.tar.zst
ripple/fossil: use clap
This adds clap to all our binaries. Only add currently takes any args,
but previously, the others did not reject args as they should.

Change-Id: I6257fb3b218c624ee0124f6ed7313a579db88c4c
Diffstat (limited to 'ripple/fossil/src/bin/mount.rs')
-rw-r--r--ripple/fossil/src/bin/mount.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/ripple/fossil/src/bin/mount.rs b/ripple/fossil/src/bin/mount.rs
index 2e6945b..ae26fbb 100644
--- a/ripple/fossil/src/bin/mount.rs
+++ b/ripple/fossil/src/bin/mount.rs
@@ -2,6 +2,7 @@
 // SPDX-License-Identifier: OSL-3.0
 
 use {
+	clap::StructOpt,
 	fossil::{store, FileRef},
 	lazy_static::lazy_static,
 	libc::{c_int, EINVAL, ENOENT, ENOSYS, EROFS},
@@ -71,8 +72,12 @@ fn file_attr(ino: u64, node: &memtree::Node) -> fuser::FileAttr {
 	}
 }
 
+#[derive(clap::Parser)]
+struct Args {}
+
 fn main() {
 	env_logger::init();
+	let _args = Args::parse();
 
 	let store = fossil::Store::open("fossil.db").unwrap();
 	let root = memtree::load_root(&store, {