1.1 --- a/libfsserver/lib/files/ext2_file_operations.cc Thu Feb 17 19:42:31 2022 +0100
1.2 +++ b/libfsserver/lib/files/ext2_file_operations.cc Thu Feb 17 22:12:53 2022 +0100
1.3 @@ -59,7 +59,7 @@
1.4 {
1.5 std::lock_guard<std::mutex> guard(_lock);
1.6
1.7 - return _image_isdir(_fs, ino_file);
1.8 + return image_isdir_by_inode(_fs, ino_file);
1.9 }
1.10
1.11 /* Test for a file. */
1.12 @@ -68,7 +68,7 @@
1.13 {
1.14 std::lock_guard<std::mutex> guard(_lock);
1.15
1.16 - return _image_isfile(_fs, ino_file);
1.17 + return image_isfile_by_inode(_fs, ino_file);
1.18 }
1.19
1.20
1.21 @@ -119,7 +119,7 @@
1.22 std::lock_guard<std::mutex> guard(_lock);
1.23
1.24 *remaining = path;
1.25 - errcode_t retval = image_find_path(_fs, remaining, ino);
1.26 + errcode_t retval = image_resolve_by_path(_fs, remaining, ino);
1.27
1.28 // NOTE: Map error conditions.
1.29