| 824 | } |
| 825 | |
| 826 | int odb_freshen_object(struct object_database *odb, |
| 827 | const struct object_id *oid) |
| 828 | { |
| 829 | struct odb_source *source; |
| 830 | odb_prepare_alternates(odb); |
| 831 | for (source = odb->sources; source; source = source->next) |
| 832 | if (odb_source_freshen_object(source, oid)) |
| 833 | return 1; |
| 834 | return 0; |
| 835 | } |
| 836 | |
| 837 | int odb_for_each_object_ext(struct object_database *odb, |
| 838 | const struct object_info *request, |
no test coverage detected