| 1277 | } |
| 1278 | |
| 1279 | int x_fstat(int fd, STRUCT_STAT *fst, STRUCT_STAT *xst) |
| 1280 | { |
| 1281 | int ret = do_fstat(fd, fst); |
| 1282 | if ((ret < 0 || get_stat_xattr(NULL, fd, fst, xst) < 0) && xst) |
| 1283 | xst->st_mode = 0; |
| 1284 | return ret; |
| 1285 | } |
| 1286 | |
| 1287 | #endif /* SUPPORT_XATTRS */ |
nothing calls this directly
no test coverage detected