| 203 | } |
| 204 | |
| 205 | static const char *set_cookie_form_location(cmd_parms * cmd, void *config, const char *location) |
| 206 | { |
| 207 | auth_form_config_rec *conf = (auth_form_config_rec *) config; |
| 208 | conf->location = location; |
| 209 | conf->location_set = 1; |
| 210 | return check_string(cmd, location); |
| 211 | } |
| 212 | |
| 213 | static const char *set_cookie_form_username(cmd_parms * cmd, void *config, const char *username) |
| 214 | { |
nothing calls this directly
no test coverage detected