diff options
author | Thomas Bushnell <thomas@gnu.org> | 1997-06-05 18:18:06 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1997-06-05 18:18:06 +0000 |
commit | c748bd1bc096e3bd898c6abf19c688a94eb889ea (patch) | |
tree | e3ba74819e6c2d2bd52dfb042b90874e23d415e3 /term/users.c | |
parent | 8cee1451070ea6aae1f63054211b1d5c8f376410 (diff) | |
download | hurd-c748bd1bc096e3bd898c6abf19c688a94eb889ea.tar.gz hurd-c748bd1bc096e3bd898c6abf19c688a94eb889ea.tar.bz2 hurd-c748bd1bc096e3bd898c6abf19c688a94eb889ea.zip |
Tue May 27 12:04:00 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* users.c (trivfs_S_file_chmod): Turn off S_ISPARE too.
Diffstat (limited to 'term/users.c')
-rw-r--r-- | term/users.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/term/users.c b/term/users.c index 42f6ae35..bb02eeeb 100644 --- a/term/users.c +++ b/term/users.c @@ -499,7 +499,7 @@ trivfs_S_file_chmod (struct trivfs_protid *cred, mode &= ~S_ISUID; } - term_mode = ((mode & ~S_IFMT & ~S_ITRANS) | S_IFCHR | S_IROOT); + term_mode = ((mode & ~S_IFMT & ~S_ITRANS & ~S_IPARE) | S_IFCHR | S_IROOT); err = 0; out: |