| 2013 | } |
| 2014 | |
| 2015 | static void fetch_pack_setup(void) |
| 2016 | { |
| 2017 | static int did_setup; |
| 2018 | if (did_setup) |
| 2019 | return; |
| 2020 | fetch_pack_config(); |
| 2021 | if (0 <= fetch_unpack_limit) |
| 2022 | unpack_limit = fetch_unpack_limit; |
| 2023 | else if (0 <= transfer_unpack_limit) |
| 2024 | unpack_limit = transfer_unpack_limit; |
| 2025 | did_setup = 1; |
| 2026 | } |
| 2027 | |
| 2028 | static int remove_duplicates_in_refs(struct ref **ref, int nr) |
| 2029 | { |
no test coverage detected