| 407 | module AP_MODULE_DECLARE_DATA auth_form_module; |
| 408 | |
| 409 | static void note_cookie_auth_failure(request_rec * r) |
| 410 | { |
| 411 | auth_form_config_rec *conf = ap_get_module_config(r->per_dir_config, |
| 412 | &auth_form_module); |
| 413 | |
| 414 | if (conf->location && ap_strchr_c(conf->location, ':')) { |
| 415 | apr_table_setn(r->err_headers_out, "Location", conf->location); |
| 416 | } |
| 417 | } |
| 418 | |
| 419 | static int hook_note_cookie_auth_failure(request_rec * r, |
| 420 | const char *auth_type) |
no test coverage detected