| 222 | } |
| 223 | |
| 224 | int fake_lstat(const struct cache_entry *ce, struct stat *st) |
| 225 | { |
| 226 | fake_lstat_data(&ce->ce_stat_data, st); |
| 227 | st->st_mode = st_mode_from_ce(ce); |
| 228 | |
| 229 | /* always succeed as lstat() replacement */ |
| 230 | return 0; |
| 231 | } |
| 232 | |
| 233 | static int ce_compare_data(struct index_state *istate, |
| 234 | const struct cache_entry *ce, |
no test coverage detected