mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-03 14:50:18 +00:00
Add chown() syscall and a simple /bin/chown program.
This commit is contained in:
parent
711e2b2651
commit
1d2529b4a1
Notes:
sideshowbarker
2024-07-19 15:36:58 +09:00
Author: https://github.com/awesomekling
Commit: 1d2529b4a1
19 changed files with 130 additions and 5 deletions
|
@ -314,3 +314,8 @@ KResult SynthFSInode::chmod(mode_t)
|
|||
{
|
||||
return KResult(-EPERM);
|
||||
}
|
||||
|
||||
KResult SynthFSInode::chown(uid_t, gid_t)
|
||||
{
|
||||
return KResult(-EPERM);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue