diff options
author | Russ Cox <rsc@swtch.com> | 2008-07-24 07:59:25 -0700 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2008-07-24 07:59:25 -0700 |
commit | 77fb6ec71369e500bab001a328c5363181980d6f (patch) | |
tree | 0a30151709a04912787183b051047a6115072ac3 /src/cmd/9pfuse | |
parent | 482299b83c134ed1cad4fb80980f2007029ee212 (diff) | |
download | plan9port-77fb6ec71369e500bab001a328c5363181980d6f.tar.gz plan9port-77fb6ec71369e500bab001a328c5363181980d6f.tar.bz2 plan9port-77fb6ec71369e500bab001a328c5363181980d6f.zip |
9pfuse: convert "invalid" to EINVAL
Diffstat (limited to 'src/cmd/9pfuse')
-rw-r--r-- | src/cmd/9pfuse/errstr.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cmd/9pfuse/errstr.c b/src/cmd/9pfuse/errstr.c index a51e337c..e03d9589 100644 --- a/src/cmd/9pfuse/errstr.c +++ b/src/cmd/9pfuse/errstr.c @@ -39,6 +39,7 @@ static Error errortab[] = { { "in use", EBUSY }, { "busy", EBUSY }, { "illegal", EINVAL }, + { "invalid", EINVAL }, { "read-only", EROFS }, { "read only", EROFS }, #ifdef EPROTO |