| 227 | } |
| 228 | |
| 229 | static const char *set_cookie_form_method(cmd_parms * cmd, void *config, const char *method) |
| 230 | { |
| 231 | auth_form_config_rec *conf = (auth_form_config_rec *) config; |
| 232 | conf->method = method; |
| 233 | conf->method_set = 1; |
| 234 | return check_string(cmd, method); |
| 235 | } |
| 236 | |
| 237 | static const char *set_cookie_form_mimetype(cmd_parms * cmd, void *config, const char *mimetype) |
| 238 | { |
nothing calls this directly
no test coverage detected