From 909297b87a6e16b2176a9127f9477816d98624ab Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Fri, 27 Feb 2015 11:12:01 +1100 Subject: [PATCH] Updated NotImplementedFileSystem. --- fuseutil/not_implemented_file_system.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/fuseutil/not_implemented_file_system.go b/fuseutil/not_implemented_file_system.go index 7a489d0..46d9dec 100644 --- a/fuseutil/not_implemented_file_system.go +++ b/fuseutil/not_implemented_file_system.go @@ -33,6 +33,12 @@ func (fs *NotImplementedFileSystem) OpenDir( return nil, fuse.ENOSYS } +func (fs *NotImplementedFileSystem) ReadDir( + ctx context.Context, + req *fuse.ReadDirRequest) (*fuse.ReadDirResponse, error) { + return nil, fuse.ENOSYS +} + func (fs *NotImplementedFileSystem) ReleaseHandle( ctx context.Context, req *fuse.ReleaseHandleRequest) (*fuse.ReleaseHandleResponse, error) {