diff options
author | Oleg Nemanov <lego12239@yandex.ru> | 2020-01-15 10:57:41 +0300 |
---|---|---|
committer | Dan Cross <crossd@gmail.com> | 2020-01-15 08:32:00 -0500 |
commit | dc24d309d591eb59168a84f233bb8dfb1795c5a2 (patch) | |
tree | 469b9046a02d71d90d310cccbd17af3773f621d6 /src/cmd/9pfuse | |
parent | e0434ae42450a56c3817d4e4857cb6d0da8ed548 (diff) | |
download | plan9port-dc24d309d591eb59168a84f233bb8dfb1795c5a2.tar.gz plan9port-dc24d309d591eb59168a84f233bb8dfb1795c5a2.tar.bz2 plan9port-dc24d309d591eb59168a84f233bb8dfb1795c5a2.zip |
9pfuse: update errortab
Diffstat (limited to 'src/cmd/9pfuse')
-rw-r--r-- | src/cmd/9pfuse/errstr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cmd/9pfuse/errstr.c b/src/cmd/9pfuse/errstr.c index e3a122e4..ef5da00f 100644 --- a/src/cmd/9pfuse/errstr.c +++ b/src/cmd/9pfuse/errstr.c @@ -21,6 +21,7 @@ static Error errortab[] = { { "exist", ENOENT }, { "no such", ENOENT }, { "not found", ENOENT }, + { "not implemented", ENOSYS}, { "input/output", EIO }, { "timeout", ETIMEDOUT }, { "timed out", ETIMEDOUT }, @@ -42,6 +43,7 @@ static Error errortab[] = { { "invalid", EINVAL }, { "read-only", EROFS }, { "read only", EROFS }, + { "stale ", ESTALE}, #ifdef EPROTO { "proto", EPROTO }, #else |