From 96a4cb8c120681ddca5b673b84646a529edbda83 Mon Sep 17 00:00:00 2001 From: Lei Huang Date: Wed, 10 Jan 2024 14:57:40 +0000 Subject: [PATCH] fix glibc version related issue Features: pil4dfs Required-githooks: true Signed-off-by: Lei Huang --- src/client/dfuse/pil4dfs/int_dfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/dfuse/pil4dfs/int_dfs.c b/src/client/dfuse/pil4dfs/int_dfs.c index 1a2f8fefcc3..a159bed541f 100644 --- a/src/client/dfuse/pil4dfs/int_dfs.c +++ b/src/client/dfuse/pil4dfs/int_dfs.c @@ -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