| 219 | } |
| 220 | |
| 221 | static const char *set_cookie_form_password(cmd_parms * cmd, void *config, const char *password) |
| 222 | { |
| 223 | auth_form_config_rec *conf = (auth_form_config_rec *) config; |
| 224 | conf->password = password; |
| 225 | conf->password_set = 1; |
| 226 | return check_string(cmd, password); |
| 227 | } |
| 228 | |
| 229 | static const char *set_cookie_form_method(cmd_parms * cmd, void *config, const char *method) |
| 230 | { |
nothing calls this directly
no test coverage detected