commit dc24d309d591eb59168a84f233bb8dfb1795c5a2
parent e0434ae42450a56c3817d4e4857cb6d0da8ed548
Author: Oleg Nemanov <lego12239@yandex.ru>
Date: Wed, 15 Jan 2020 10:57:41 +0300
9pfuse: update errortab
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git 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