| 237 | } |
| 238 | |
| 239 | static void mod_info_show_parents(request_rec * r, ap_directive_t * node, |
| 240 | int from, int to) |
| 241 | { |
| 242 | if (from < to) |
| 243 | mod_info_show_parents(r, node->parent, from, to - 1); |
| 244 | mod_info_show_open(r, node, to); |
| 245 | } |
| 246 | |
| 247 | static int mod_info_module_cmds(request_rec * r, const command_rec * cmds, |
| 248 | ap_directive_t * node, int from, int level) |
no test coverage detected