| 2156 | } |
| 2157 | |
| 2158 | int fetch_pack_fsck_objects(void) |
| 2159 | { |
| 2160 | fetch_pack_setup(); |
| 2161 | if (fetch_fsck_objects >= 0) |
| 2162 | return fetch_fsck_objects; |
| 2163 | if (transfer_fsck_objects >= 0) |
| 2164 | return transfer_fsck_objects; |
| 2165 | return 0; |
| 2166 | } |
| 2167 | |
| 2168 | struct ref *fetch_pack(struct fetch_pack_args *args, |
| 2169 | int fd[], |
no test coverage detected