diff --git a/samples/hellofs/hello_fs.go b/samples/hellofs/hello_fs.go index 60e6300..0297d23 100644 --- a/samples/hellofs/hello_fs.go +++ b/samples/hellofs/hello_fs.go @@ -57,6 +57,9 @@ func (fs *helloFS) serve(c *fuse.Connection) { } switch typed := op.(type) { + case *fuseops.InitOp: + fs.init(typed) + default: typed.Respond(fuse.ENOSYS) }