| 23 | } |
| 24 | |
| 25 | static int agent_advertise(struct repository *r UNUSED, |
| 26 | struct strbuf *value) |
| 27 | { |
| 28 | if (value) |
| 29 | strbuf_addstr(value, git_user_agent_sanitized()); |
| 30 | return 1; |
| 31 | } |
| 32 | |
| 33 | static int promisor_remote_advertise(struct repository *r, |
| 34 | struct strbuf *value) |
nothing calls this directly
no test coverage detected