| 365 | } |
| 366 | |
| 367 | static const char *set_transitive(int *ptransitive, const char *value) |
| 368 | { |
| 369 | if (!apr_cstr_casecmp("auto", value)) { |
| 370 | *ptransitive = 1; |
| 371 | return NULL; |
| 372 | } |
| 373 | else if (!apr_cstr_casecmp("manual", value)) { |
| 374 | *ptransitive = 0; |
| 375 | return NULL; |
| 376 | } |
| 377 | return "unknown value, use \"auto|manual\""; |
| 378 | } |
| 379 | |
| 380 | static const char *md_config_sec_start(cmd_parms *cmd, void *mconfig, const char *arg) |
| 381 | { |
no outgoing calls
no test coverage detected