| 1214 | } |
| 1215 | |
| 1216 | static void format_symref_info(struct strbuf *buf, struct string_list *symref) |
| 1217 | { |
| 1218 | struct string_list_item *item; |
| 1219 | |
| 1220 | if (!symref->nr) |
| 1221 | return; |
| 1222 | for_each_string_list_item(item, symref) |
| 1223 | strbuf_addf(buf, " symref=%s:%s", item->string, (char *)item->util); |
| 1224 | } |
| 1225 | |
| 1226 | static void format_session_id(struct strbuf *buf, struct upload_pack_data *d) { |
| 1227 | if (d->advertise_sid) |
no test coverage detected