diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-03-27 15:24:36 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-03-27 15:24:36 -0400 |
commit | 9f06eb0c0dfef4b6276253fe29f26e47d1ef7b30 (patch) | |
tree | af793cb08b91f091d251cf6351a6766b5b09bf78 /src/dir.c | |
parent | ccfc70a1ccca27a1481ae5dae11d8ea9f5fc8ef9 (diff) | |
download | bfs-9f06eb0c0dfef4b6276253fe29f26e47d1ef7b30.tar.xz |
dir: s/d_fileno/d_ino/
Diffstat (limited to 'src/dir.c')
-rw-r--r-- | src/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -216,7 +216,7 @@ static int bfs_getdent(struct bfs_dir *dir, const sys_dirent **de) { static bool skip_dirent(const sys_dirent *de) { #if __FreeBSD__ // NFS mounts on FreeBSD can return empty dirents with inode number 0 - if (de->d_fileno == 0) { + if (de->d_ino == 0) { return true; } #endif |