| 211 | } |
| 212 | |
| 213 | static const char *set_cookie_form_username(cmd_parms * cmd, void *config, const char *username) |
| 214 | { |
| 215 | auth_form_config_rec *conf = (auth_form_config_rec *) config; |
| 216 | conf->username = username; |
| 217 | conf->username_set = 1; |
| 218 | return check_string(cmd, username); |
| 219 | } |
| 220 | |
| 221 | static const char *set_cookie_form_password(cmd_parms * cmd, void *config, const char *password) |
| 222 | { |
nothing calls this directly
no test coverage detected