| 1205 | } |
| 1206 | |
| 1207 | static int check_ref(const struct reference *ref, void *cb_data) |
| 1208 | { |
| 1209 | const char *refname = strip_namespace(ref->name); |
| 1210 | struct upload_pack_data *data = cb_data; |
| 1211 | |
| 1212 | mark_our_ref(refname, ref->name, ref->oid, &data->hidden_refs); |
| 1213 | return 0; |
| 1214 | } |
| 1215 | |
| 1216 | static void format_symref_info(struct strbuf *buf, struct string_list *symref) |
| 1217 | { |
nothing calls this directly
no test coverage detected