mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 04:55:09 +00:00
FileSystem: Rename VFS::fchmod() -> chmod().
This commit is contained in:
parent
e67bfdb7f6
commit
a53c922f8a
3 changed files with 4 additions and 4 deletions
|
@ -68,7 +68,7 @@ public:
|
|||
KResult symlink(StringView target, StringView linkpath, Custody& base);
|
||||
KResult rmdir(StringView path, Custody& base);
|
||||
KResult chmod(StringView path, mode_t, Custody& base);
|
||||
KResult fchmod(Inode&, mode_t);
|
||||
KResult chmod(Inode&, mode_t);
|
||||
KResult chown(StringView path, uid_t, gid_t, Custody& base);
|
||||
KResult chown(Inode&, uid_t, gid_t);
|
||||
KResult access(StringView path, int mode, Custody& base);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue