| 3284 | } |
| 3285 | |
| 3286 | void repo_config_set_multivar(struct repository *r, |
| 3287 | const char *key, const char *value, |
| 3288 | const char *value_pattern, unsigned flags) |
| 3289 | { |
| 3290 | char *file = repo_git_path(r, "config"); |
| 3291 | repo_config_set_multivar_in_file(r, file, key, value, |
| 3292 | value_pattern, flags); |
| 3293 | free(file); |
| 3294 | } |
| 3295 | |
| 3296 | static size_t section_name_match (const char *buf, const char *name) |
| 3297 | { |
no test coverage detected