diff options
author | Roland McGrath <roland@gnu.org> | 1999-11-08 21:46:54 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-11-08 21:46:54 +0000 |
commit | 34cd2b75da701f8f7579de6cac57b144ac375e6e (patch) | |
tree | 2a04fcb75cda3a581a7a7fcaff81f79ea7f12cc7 /exec | |
parent | ff42e13568a4da63718d71f6c0b08a3b698ba26a (diff) |
1999-11-08 Roland McGrath <roland@baalperazim.frob.com>
* exectrans.c (trivfs_support_write, trivfs_support_exec): Variables
removed.
(trivfs_allow_open): Set to just O_READ.
Diffstat (limited to 'exec')
-rw-r--r-- | exec/exectrans.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/exec/exectrans.c b/exec/exectrans.c index 59c9cdf2..4c6e0cc0 100644 --- a/exec/exectrans.c +++ b/exec/exectrans.c @@ -15,9 +15,7 @@ static struct port_bucket *port_bucket; int trivfs_fstype = FSTYPE_MISC; int trivfs_fsid = 0; int trivfs_support_read = 1; -int trivfs_support_write = 1; -int trivfs_support_exec = 1; -int trivfs_allow_open = O_READ|O_WRITE|O_EXEC; +int trivfs_allow_open = O_READ; struct port_class *trivfs_protid_portclasses[1]; struct port_class *trivfs_cntl_portclasses[1]; |