| 310 | } |
| 311 | |
| 312 | static const char *md_section_check(cmd_parms *cmd) { |
| 313 | if (!inside_md_section(cmd)) { |
| 314 | return apr_pstrcat(cmd->pool, cmd->cmd->name, " is only valid inside a '", |
| 315 | MD_CMD_MD_SECTION, "' context, not here", NULL); |
| 316 | } |
| 317 | return NULL; |
| 318 | } |
| 319 | |
| 320 | #define MD_LOC_GLOBAL (0x01) |
| 321 | #define MD_LOC_MD (0x02) |
no test coverage detected