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

Function do_lstat

syscall.c:1118–1129  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1116}
1117
1118int do_lstat(const char *path, STRUCT_STAT *st)
1119{
1120#ifdef SUPPORT_LINKS
1121# ifdef USE_STAT64_FUNCS
1122 return lstat64(path, st);
1123# else
1124 return lstat(path, st);
1125# endif
1126#else
1127 return do_stat(path, st);
1128#endif
1129}
1130
1131/*
1132 Symlink-race-safe variants of do_stat() / do_lstat() for receiver-

Callers 4

successful_sendFunction · 0.85
list_fileFunction · 0.85
do_open_nofollowFunction · 0.85
create_pid_fileFunction · 0.85

Calls 1

do_statFunction · 0.85

Tested by

no test coverage detected