| 633 | } |
| 634 | |
| 635 | static const char *md_config_set_stapling(cmd_parms *cmd, void *dc, const char *value) |
| 636 | { |
| 637 | md_srv_conf_t *config = md_config_get(cmd->server); |
| 638 | const char *err; |
| 639 | |
| 640 | (void)dc; |
| 641 | if ((err = md_conf_check_location(cmd, MD_LOC_ALL))) { |
| 642 | return err; |
| 643 | } |
| 644 | return set_on_off(&config->stapling, value, cmd->pool); |
| 645 | } |
| 646 | |
| 647 | static const char *md_config_set_staple_others(cmd_parms *cmd, void *dc, const char *value) |
| 648 | { |
nothing calls this directly
no test coverage detected