summaryrefslogtreecommitdiff
path: root/libtrivfs
diff options
context:
space:
mode:
Diffstat (limited to 'libtrivfs')
-rw-r--r--libtrivfs/file-chmod.c3
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;
}