| 383 | } |
| 384 | |
| 385 | static int include_by_remote_url(struct config_include_data *inc, |
| 386 | const char *cond, size_t cond_len) |
| 387 | { |
| 388 | if (inc->opts->unconditional_remote_url) |
| 389 | return 1; |
| 390 | if (!inc->remote_urls) |
| 391 | populate_remote_urls(inc); |
| 392 | return at_least_one_url_matches_glob(cond, cond_len, |
| 393 | inc->remote_urls); |
| 394 | } |
| 395 | |
| 396 | static int include_condition_is_true(const struct key_value_info *kvi, |
| 397 | struct config_include_data *inc, |
no test coverage detected