| 662 | } |
| 663 | |
| 664 | static int authz_core_check_config(apr_pool_t *p, apr_pool_t *plog, |
| 665 | apr_pool_t *ptemp, server_rec *s) |
| 666 | { |
| 667 | authz_core_dir_conf *conf = authz_core_first_dir_conf; |
| 668 | |
| 669 | while (conf) { |
| 670 | if (conf->section) { |
| 671 | if (authz_core_check_section(p, s, conf->section, 1) != OK) { |
| 672 | return !OK; |
| 673 | } |
| 674 | } |
| 675 | |
| 676 | conf = conf->next; |
| 677 | } |
| 678 | |
| 679 | return OK; |
| 680 | } |
| 681 | |
| 682 | static const command_rec authz_cmds[] = |
| 683 | { |
nothing calls this directly
no test coverage detected