| 621 | } |
| 622 | |
| 623 | static const char *md_config_set_must_staple(cmd_parms *cmd, void *dc, const char *value) |
| 624 | { |
| 625 | md_srv_conf_t *config = md_config_get(cmd->server); |
| 626 | const char *err; |
| 627 | |
| 628 | (void)dc; |
| 629 | if ((err = md_conf_check_location(cmd, MD_LOC_ALL))) { |
| 630 | return err; |
| 631 | } |
| 632 | return set_on_off(&config->must_staple, value, cmd->pool); |
| 633 | } |
| 634 | |
| 635 | static const char *md_config_set_stapling(cmd_parms *cmd, void *dc, const char *value) |
| 636 | { |
nothing calls this directly
no test coverage detected