| 941 | } |
| 942 | |
| 943 | static int config_to_packet_line(const char *key, const char *value, |
| 944 | const struct config_context *ctx UNUSED, |
| 945 | void *data) |
| 946 | { |
| 947 | struct packet_reader *writer = data; |
| 948 | |
| 949 | if (starts_with(key, "bundle.")) |
| 950 | packet_write_fmt(writer->fd, "%s=%s", key, value); |
| 951 | |
| 952 | return 0; |
| 953 | } |
| 954 | |
| 955 | int bundle_uri_command(struct repository *r, |
| 956 | struct packet_reader *request) |
nothing calls this directly
no test coverage detected