| 2275 | } |
| 2276 | |
| 2277 | static int repo_config_callback(const char *key, const char *value, |
| 2278 | const struct config_context *ctx, void *data) |
| 2279 | { |
| 2280 | struct repo_config *config = data; |
| 2281 | |
| 2282 | comment_char_callback(key, value, ctx, &config->comment_char_config); |
| 2283 | return config_set_callback(key, value, ctx, config->repo->config); |
| 2284 | } |
| 2285 | |
| 2286 | /* Functions use to read configuration from a repository */ |
| 2287 | static void repo_read_config(struct repository *repo) |
nothing calls this directly
no test coverage detected