| Index: native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.cc
|
| diff --git a/native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.cc b/native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.cc
|
| index fdf74be4a6e2be24f93dfae0ad839f2c150dfcf5..ddc32de8bb5886815f78f4310b2be25f324092e2 100644
|
| --- a/native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.cc
|
| +++ b/native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.cc
|
| @@ -57,19 +57,6 @@ void FuseFs::Destroy() {
|
| fuse_ops_->destroy(fuse_user_data_);
|
| }
|
|
|
| -Error FuseFs::Access(const Path& path, int a_mode) {
|
| - if (!fuse_ops_->access) {
|
| - LOG_TRACE("fuse_ops_->access is NULL.");
|
| - return ENOSYS;
|
| - }
|
| -
|
| - int result = fuse_ops_->access(path.Join().c_str(), a_mode);
|
| - if (result < 0)
|
| - return -result;
|
| -
|
| - return 0;
|
| -}
|
| -
|
| Error FuseFs::Open(const Path& path, int open_flags, ScopedNode* out_node) {
|
| std::string path_str = path.Join();
|
| const char* path_cstr = path_str.c_str();
|
|
|