diff options
| author | Michael I. Bushnell <mib@gnu.org> | 1994-02-18 20:08:18 +0000 |
|---|---|---|
| committer | Michael I. Bushnell <mib@gnu.org> | 1994-02-18 20:08:18 +0000 |
| commit | 327c76315cba0a4c211e0b114c7db377c310baab (patch) | |
| tree | 6fdd1ec9d20c35d51dceec850d4bc026b42c1bb1 | |
| parent | 8e70335df10f114b9d377b12573710b7b685efdf (diff) | |
Formerly file-chmod.c.~3~
| -rw-r--r-- | libtrivfs/file-chmod.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libtrivfs/file-chmod.c b/libtrivfs/file-chmod.c index 5ead3a18..b0adcfb4 100644 --- a/libtrivfs/file-chmod.c +++ b/libtrivfs/file-chmod.c @@ -21,5 +21,6 @@ error_t trivfs_S_file_chmod (struct protid *cred, mode_t mode) { - return cred ? file_chmod (cred->realnod, mode) : EOPNOTSUPP; + /* Is this right? */ + return cred ? file_chmod (cred->realnode, mode) : EOPNOTSUPP; } |
