MCPcopy Create free account
hub / github.com/RsyncProject/rsync / do_lstat_at

Function do_lstat_at

syscall.c:1192–1199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1190}
1191
1192int do_lstat_at(const char *path, STRUCT_STAT *st)
1193{
1194#ifdef SUPPORT_LINKS
1195 return do_xstat_at(path, st, AT_SYMLINK_NOFOLLOW, do_lstat);
1196#else
1197 return do_xstat_at(path, st, 0, do_stat);
1198#endif
1199}
1200
1201int do_fstat(int fd, STRUCT_STAT *st)
1202{

Callers 4

handle_partial_dirFunction · 0.85
validate_backup_dirFunction · 0.85
make_backupFunction · 0.85
x_lstatFunction · 0.85

Calls 1

do_xstat_atFunction · 0.85

Tested by

no test coverage detected