| Index: native_client_sdk/src/libraries/nacl_io/stream/stream_fs.cc
|
| diff --git a/native_client_sdk/src/libraries/nacl_io/stream/stream_fs.cc b/native_client_sdk/src/libraries/nacl_io/stream/stream_fs.cc
|
| index bbc465a76b905680afe0ab6be7e70aa5e3f37d57..8f5ef61a89c6de674c4ead29981af8508549fee6 100644
|
| --- a/native_client_sdk/src/libraries/nacl_io/stream/stream_fs.cc
|
| +++ b/native_client_sdk/src/libraries/nacl_io/stream/stream_fs.cc
|
| @@ -84,20 +84,32 @@ StreamFs::~StreamFs() {
|
| pthread_cond_destroy(&message_cond_);
|
| }
|
|
|
| -Error StreamFs::Access(const Path& path, int a_mode) { return EACCES; }
|
| +Error StreamFs::Access(const Path& path, int a_mode) {
|
| + return EACCES;
|
| +}
|
|
|
| Error StreamFs::Open(const Path& path, int o_flags, ScopedNode* out_node) {
|
| return EACCES;
|
| }
|
|
|
| -Error StreamFs::Unlink(const Path& path) { return EACCES; }
|
| +Error StreamFs::Unlink(const Path& path) {
|
| + return EACCES;
|
| +}
|
|
|
| -Error StreamFs::Mkdir(const Path& path, int permissions) { return EACCES; }
|
| +Error StreamFs::Mkdir(const Path& path, int permissions) {
|
| + return EACCES;
|
| +}
|
|
|
| -Error StreamFs::Rmdir(const Path& path) { return EACCES; }
|
| +Error StreamFs::Rmdir(const Path& path) {
|
| + return EACCES;
|
| +}
|
|
|
| -Error StreamFs::Remove(const Path& path) { return EACCES; }
|
| +Error StreamFs::Remove(const Path& path) {
|
| + return EACCES;
|
| +}
|
|
|
| -Error StreamFs::Rename(const Path& path, const Path& newpath) { return EACCES; }
|
| +Error StreamFs::Rename(const Path& path, const Path& newpath) {
|
| + return EACCES;
|
| +}
|
|
|
| } // namespace nacl_io
|
|
|