1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:28:12 +00:00

FileSystem: Rename VFS::resolve_path_to_custody() => resolve_path().

This commit is contained in:
Andreas Kling 2019-05-31 15:30:09 +02:00
parent 8adadf8a46
commit 056a7fea08
2 changed files with 20 additions and 20 deletions

View file

@ -98,7 +98,7 @@ public:
Device* get_device(unsigned major, unsigned minor);
Custody& root_custody();
KResultOr<Retained<Custody>> resolve_path_to_custody(StringView path, Custody& base, RetainPtr<Custody>* parent = nullptr, int options = 0);
KResultOr<Retained<Custody>> resolve_path(StringView path, Custody& base, RetainPtr<Custody>* parent = nullptr, int options = 0);
private:
friend class FileDescriptor;