diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-07-17 01:44:14 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-07-17 01:44:14 +0000 |
commit | 7dba74514da7fbe05eba61d0fe972cb221a468b2 (patch) | |
tree | 39461b3cf42115d22afd8a0e5f4508d526449f51 | |
parent | 841bfb5e7efa9fcf264e9e4ad3318d879c178c38 (diff) |
(trivfs_S_file_chown): Return 0 for success.
-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 326f9205..b8aa5bd5 100644 --- a/term/users.c +++ b/term/users.c @@ -460,7 +460,7 @@ trivfs_S_file_chown (struct trivfs_protid *cred, term_owner = uid; term_group = gid; mutex_unlock (&global_lock); - return EPERM; + return 0; } /* Not legitimate */ |