| Index: native_client_sdk/src/libraries/nacl_io/node.cc
|
| diff --git a/native_client_sdk/src/libraries/nacl_io/node.cc b/native_client_sdk/src/libraries/nacl_io/node.cc
|
| index ceaad6ce52e6134fcc4223a98f6bed1362679dd0..b8876edd1a16e755c60fe73a1e2f80a6c0976920 100644
|
| --- a/native_client_sdk/src/libraries/nacl_io/node.cc
|
| +++ b/native_client_sdk/src/libraries/nacl_io/node.cc
|
| @@ -184,7 +184,9 @@ bool Node::IsaFile() { return (stat_.st_mode & S_IFREG) != 0; }
|
|
|
| bool Node::IsaSock() { return (stat_.st_mode & S_IFSOCK) != 0; }
|
|
|
| -bool Node::IsaTTY() { return (stat_.st_mode & S_IFCHR) != 0; }
|
| +Error Node::Isatty() {
|
| + return ENOTTY;
|
| +}
|
|
|
| Error Node::AddChild(const std::string& name, const ScopedNode& node) {
|
| return ENOTDIR;
|
|
|