| 2459 | } |
| 2460 | |
| 2461 | void git_protected_config(config_fn_t fn, void *data) |
| 2462 | { |
| 2463 | if (!protected_config.hash_initialized) |
| 2464 | read_protected_config(); |
| 2465 | configset_iter(&protected_config, fn, data); |
| 2466 | } |
| 2467 | |
| 2468 | int repo_config_get_expiry(struct repository *r, const char *key, char **output) |
| 2469 | { |
no test coverage detected