diff options
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -262,17 +262,6 @@ bool is_nonexistence_error(int error) { return error == ENOENT || errno == ENOTDIR; } -int xfstatat(int fd, const char *path, struct stat *buf, int flags) { - int ret = fstatat(fd, path, buf, flags); - - if (ret != 0 && !(flags & AT_SYMLINK_NOFOLLOW) && is_nonexistence_error(errno)) { - flags |= AT_SYMLINK_NOFOLLOW; - ret = fstatat(fd, path, buf, flags); - } - - return ret; -} - enum bftw_typeflag mode_to_typeflag(mode_t mode) { switch (mode & S_IFMT) { #ifdef S_IFBLK |