| 1116 | } |
| 1117 | |
| 1118 | int 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- |
no test coverage detected