Skip to content

Commit

Permalink
fix glibc version related issue
Browse files Browse the repository at this point in the history
Features: pil4dfs

Required-githooks: true

Signed-off-by: Lei Huang <[email protected]>
  • Loading branch information
wiliamhuang committed Jan 10, 2024
1 parent 87f0aa2 commit 96a4cb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/dfuse/pil4dfs/int_dfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -2576,7 +2576,7 @@ new_fxstatat(int ver, int dirfd, const char *path, struct stat *stat_buf, int fl
if (dirfd >= FD_FILE_BASE && dirfd < FD_DIR_BASE) {
if (path[0] == 0 && flags & AT_EMPTY_PATH)
/* same as fstat for a file. May need further work to handle flags */
return fstat(dirfd, stat_buf);
return new_fxstat(ver, dirfd, stat_buf);
else if (path[0] == 0)
error = ENOENT;
else
Expand Down

0 comments on commit 96a4cb8

Please sign in to comment.