t9pfuse: update errortab - plan9port - [fork] Plan 9 from user space
(HTM) git clone git://src.adamsgaard.dk/plan9port
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit dc24d309d591eb59168a84f233bb8dfb1795c5a2
(DIR) parent e0434ae42450a56c3817d4e4857cb6d0da8ed548
(HTM) Author: Oleg Nemanov <lego12239@yandex.ru>
Date: Wed, 15 Jan 2020 10:57:41 +0300
9pfuse: update errortab
Diffstat:
M src/cmd/9pfuse/errstr.c | 2 ++
1 file changed, 2 insertions(+), 0 deletions(-)
---
(DIR) diff --git a/src/cmd/9pfuse/errstr.c b/src/cmd/9pfuse/errstr.c
t@@ -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 },
t@@ -42,6 +43,7 @@ static Error errortab[] = {
{ "invalid", EINVAL },
{ "read-only", EROFS },
{ "read only", EROFS },
+ { "stale ", ESTALE},
#ifdef EPROTO
{ "proto", EPROTO },
#else