| 1774 | } |
| 1775 | |
| 1776 | static void boolConfigGet(client *c, typeData data) { |
| 1777 | addReplyBulkCString(c, *data.yesno.config ? "yes" : "no"); |
| 1778 | } |
| 1779 | |
| 1780 | static void boolConfigRewrite(typeData data, const char *name, struct rewriteConfigState *state) { |
| 1781 | rewriteConfigYesNoOption(state, name,*(data.yesno.config), data.yesno.default_value); |
nothing calls this directly
no test coverage detected