* This routine is called after the server processes the configuration * files. At this point the module may review and adjust its configuration * settings in relation to one another and report any problems. On restart, * this routine will be called twice, once in the startup process (which * exits shortly after this phase) and once in the running server process. * * The return value is OK,
| 758 | * phase. |
| 759 | */ |
| 760 | static int x_check_config(apr_pool_t *pconf, apr_pool_t *plog, |
| 761 | apr_pool_t *ptemp, server_rec *s) |
| 762 | { |
| 763 | /* |
| 764 | * Log the call and exit. |
| 765 | */ |
| 766 | trace_startup(pconf, s, NULL, "x_check_config()"); |
| 767 | return OK; |
| 768 | } |
| 769 | |
| 770 | /* |
| 771 | * This routine is called when the -t command-line option is supplied. |
nothing calls this directly
no test coverage detected