| 1827 | } |
| 1828 | |
| 1829 | static inline int want_object_in_pack(const struct object_id *oid, |
| 1830 | int exclude, |
| 1831 | struct packed_git **found_pack, |
| 1832 | off_t *found_offset) |
| 1833 | { |
| 1834 | return want_object_in_pack_mtime(oid, exclude, found_pack, found_offset, |
| 1835 | 0); |
| 1836 | } |
| 1837 | |
| 1838 | static struct object_entry *create_object_entry(const struct object_id *oid, |
| 1839 | enum object_type type, |
no test coverage detected