aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2020-06-11 22:20:15 +0200
committerJakob Unterwurzacher2020-06-21 12:01:24 +0200
commit2aad58f9ec3386cbf3de6e10a82de51052832a30 (patch)
tree5fc6616b22e076d82e1e709344431148d998f8d3 /main.go
parent3b61244b72f74a25651d4ba184ac7cc62c937db0 (diff)
v2api (go-fuse v2 api): initial noop implementation
Compiles and mounts but does nothing useful.
Diffstat (limited to 'main.go')
-rw-r--r--main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.go b/main.go
index 11e15b2..5ce57ec 100644
--- a/main.go
+++ b/main.go
@@ -313,7 +313,8 @@ func main() {
}
// "-fsck"
if args.fsck {
- fsck(&args)
+ // TODO
+ //fsck(&args)
os.Exit(0)
}
}