| 1131 | } |
| 1132 | |
| 1133 | static struct ref *make_linked_ref(const char *name, struct ref ***tail) |
| 1134 | { |
| 1135 | struct ref *ret = alloc_ref(name); |
| 1136 | tail_link_ref(ret, tail); |
| 1137 | return ret; |
| 1138 | } |
| 1139 | |
| 1140 | static char *guess_ref(const char *name, struct ref *peer) |
| 1141 | { |
no test coverage detected