| 104 | } |
| 105 | |
| 106 | static int log_init(apr_pool_t *pc, apr_pool_t *p, apr_pool_t *pt, |
| 107 | server_rec *s) |
| 108 | { |
| 109 | for ( ; s ; s = s->next) { |
| 110 | if (!open_log(s, p)) { |
| 111 | return HTTP_INTERNAL_SERVER_ERROR; |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | return OK; |
| 116 | } |
| 117 | |
| 118 | |
| 119 | /* e is the first _invalid_ location in q |
nothing calls this directly
no test coverage detected