summaryrefslogtreecommitdiff
path: root/storeio/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'storeio/io.c')
-rw-r--r--storeio/io.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/storeio/io.c b/storeio/io.c
index 4586c683..9c5673c0 100644
--- a/storeio/io.c
+++ b/storeio/io.c
@@ -41,6 +41,8 @@ trivfs_S_io_map (struct trivfs_protid *cred,
{
if (! cred)
return EOPNOTSUPP;
+ else if (! (cred->po->openmodes & (O_READ|O_WRITE)))
+ return EINVAL;
else
{
mach_port_t memobj;
@@ -86,7 +88,7 @@ trivfs_S_io_read (struct trivfs_protid *cred,
if (! cred)
return EOPNOTSUPP;
else if (!(cred->po->openmodes & O_READ))
- return EBADF;
+ return EINVAL;
else
return open_read ((struct open *)cred->po->hook,
offs, amount, (void **)data, data_len);