| 990 | }; |
| 991 | |
| 992 | static int check_config(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp, |
| 993 | server_rec *s) |
| 994 | { |
| 995 | if (ap_exists_config_define("DUMP_CONFIG")) { |
| 996 | apr_file_open_stdout(&out, ptemp); |
| 997 | mod_info_module_cmds(NULL, NULL, ap_conftree, 0, 0); |
| 998 | } |
| 999 | |
| 1000 | return DECLINED; |
| 1001 | } |
| 1002 | |
| 1003 | |
| 1004 | static void register_hooks(apr_pool_t * p) |
nothing calls this directly
no test coverage detected