| 180 | } |
| 181 | |
| 182 | static int rev_list_insert_ref(struct fetch_negotiator *negotiator, |
| 183 | const struct object_id *oid) |
| 184 | { |
| 185 | struct commit *c = deref_without_lazy_fetch(oid, 0); |
| 186 | |
| 187 | if (c) |
| 188 | negotiator->add_tip(negotiator, c); |
| 189 | return 0; |
| 190 | } |
| 191 | |
| 192 | static int rev_list_insert_ref_oid(const struct reference *ref, void *cb_data) |
| 193 | { |
no test coverage detected