| 646 | } |
| 647 | |
| 648 | static int allow_hidden_refs(enum allow_uor allow_uor) |
| 649 | { |
| 650 | if ((allow_uor & ALLOW_ANY_SHA1) == ALLOW_ANY_SHA1) |
| 651 | return 1; |
| 652 | return !(allow_uor & (ALLOW_TIP_SHA1 | ALLOW_REACHABLE_SHA1)); |
| 653 | } |
| 654 | |
| 655 | static void for_each_namespaced_ref_1(refs_for_each_cb fn, |
| 656 | struct upload_pack_data *data) |
no outgoing calls
no test coverage detected