| 630 | } |
| 631 | |
| 632 | AP_CORE_DECLARE(void) ap_add_file_conf(apr_pool_t *p, core_dir_config *conf, |
| 633 | void *url_config) |
| 634 | { |
| 635 | void **new_space; |
| 636 | |
| 637 | if (!conf->sec_file) |
| 638 | conf->sec_file = apr_array_make(p, 2, sizeof(ap_conf_vector_t *)); |
| 639 | |
| 640 | new_space = (void **)apr_array_push(conf->sec_file); |
| 641 | *new_space = url_config; |
| 642 | } |
| 643 | |
| 644 | AP_CORE_DECLARE(const char *) ap_add_if_conf(apr_pool_t *p, |
| 645 | core_dir_config *conf, |