diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-02-04 20:50:50 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-02-04 20:50:50 +0000 |
commit | c78bcfcb4784a8bc6c599e0f03736cffb774e59f (patch) | |
tree | fb7898c97f1dddc5540fb48f0022405e552c84b1 /libdiskfs/io-modes-off.c | |
parent | 07a668a145036ee16be7f12f359bfb07dc8e79ed (diff) |
Formerly io-modes-off.c.~3~
Diffstat (limited to 'libdiskfs/io-modes-off.c')
-rw-r--r-- | libdiskfs/io-modes-off.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libdiskfs/io-modes-off.c b/libdiskfs/io-modes-off.c index 9f97acac..759661da 100644 --- a/libdiskfs/io-modes-off.c +++ b/libdiskfs/io-modes-off.c @@ -17,6 +17,7 @@ #include "priv.h" #include "io_S.h" +#include <fcntl.h> /* Implement io_clear_some_openmodes as described in <hurd/io.defs>. */ error_t @@ -26,10 +27,9 @@ diskfs_S_io_clear_some_openmodes (struct protid *cred, if (!cred) return EOPNOTSUPP; - mutex_lock (&cred->po->ip->lock); - ioserver_get_conch (&np->conch); - if (!err) - cred->po->openstat &= ~(modes & HONORED_STATE_MODES); - mutex_unlock (&cred->po->ip->lock); - return err; + mutex_lock (&cred->po->np->lock); + ioserver_get_conch (&cred->po->np->conch); + cred->po->openstat &= ~(offbits & HONORED_STATE_MODES); + mutex_unlock (&cred->po->np->lock); + return 0; } |